test: wait for page to load

This commit is contained in:
lawvs 2023-01-04 16:13:40 +08:00 committed by DarkSky
parent c287380067
commit 1e27b2a619
2 changed files with 2 additions and 5 deletions

View File

@ -12,10 +12,7 @@ test.describe('web console', () => {
//Later on, call this function with some arguments.
// const msg = await getEditoVersionHandle.evaluate((post, args) => post);
// console.log(getEditoVersionHandle);
await page.waitForTimeout(500);
const editoVersion = await page.evaluate(
() => (window as any).__editoVersion
);
const editoVersion = await page.evaluate(() => window.__editoVersion);
// const documentEditorVersion = await page.inputValue('input#editor-version');
const pkgEditorVersion = pkg.dependencies['@blocksuite/editor'];

View File

@ -4,6 +4,6 @@ export function loadPage() {
test.beforeEach(async ({ page }) => {
await page.goto('http://localhost:8080');
// waiting for page loading end
// await page.waitForTimeout(1000);
await page.waitForSelector('#__next');
});
}