mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Synthetics] Add private locations in synthetics settings (#146986)
Fixes https://github.com/elastic/kibana/issues/137486
This commit is contained in:
parent
405eb89f35
commit
802d8eaeb2
52 changed files with 2031 additions and 151 deletions
|
@ -10,7 +10,11 @@ import { expect, Page } from '@elastic/synthetics';
|
|||
export async function waitForLoadingToFinish({ page }: { page: Page }) {
|
||||
while (true) {
|
||||
if ((await page.$(byTestId('kbnLoadingMessage'))) === null) break;
|
||||
await page.waitForTimeout(5 * 1000);
|
||||
await page.waitForTimeout(2 * 1000);
|
||||
}
|
||||
while (true) {
|
||||
if ((await page.$(byTestId('globalLoadingIndicator'))) === null) break;
|
||||
await page.waitForTimeout(2 * 1000);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue