mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-14 05:47:11 +03:00
test: wait for page to load
This commit is contained in:
parent
c287380067
commit
1e27b2a619
@ -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'];
|
||||
|
||||
|
@ -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');
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user