mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-31 13:40:29 +08:00
Fix flaky mobile UI tests (#7278)
* Fix flaky mobile UI tests * fix test * Update Playwright Snapshots * Update Playwright Snapshots * remove unused import --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
ca5eb17a2e
commit
da7b8d400e
@ -1,8 +1,6 @@
|
||||
// Copyright (c) Jupyter Development Team.
|
||||
// Distributed under the terms of the Modified BSD License.
|
||||
|
||||
import path from 'path';
|
||||
|
||||
import { expect } from '@playwright/test';
|
||||
|
||||
import { test } from './fixtures';
|
||||
@ -28,26 +26,29 @@ test.describe('Mobile', () => {
|
||||
tmpPath,
|
||||
browserName,
|
||||
}) => {
|
||||
const notebook = 'empty.ipynb';
|
||||
await page.contents.uploadFile(
|
||||
path.resolve(__dirname, `./notebooks/${notebook}`),
|
||||
`${tmpPath}/${notebook}`
|
||||
);
|
||||
await page.goto(`notebooks/${tmpPath}/${notebook}`);
|
||||
await page.goto(`tree/${tmpPath}`);
|
||||
|
||||
// Create a new notebook
|
||||
const [notebook] = await Promise.all([
|
||||
page.waitForEvent('popup'),
|
||||
page.click('text="New"'),
|
||||
page.click('text="Python 3 (ipykernel)"'),
|
||||
]);
|
||||
|
||||
// wait for the kernel status animations to be finished
|
||||
await waitForKernelReady(page);
|
||||
await waitForKernelReady(notebook);
|
||||
|
||||
// force switching back to command mode to avoid capturing the cursor in the screenshot
|
||||
await page.evaluate(async () => {
|
||||
await notebook.evaluate(async () => {
|
||||
await window.jupyterapp.commands.execute('notebook:enter-command-mode');
|
||||
});
|
||||
|
||||
// TODO: remove
|
||||
if (browserName === 'firefox') {
|
||||
await hideAddCellButton(page);
|
||||
await hideAddCellButton(notebook);
|
||||
}
|
||||
|
||||
expect(await page.screenshot()).toMatchSnapshot('notebook.png');
|
||||
expect(await notebook.screenshot()).toMatchSnapshot('notebook.png');
|
||||
await notebook.close();
|
||||
});
|
||||
});
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 7.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 7.9 KiB |
Loading…
x
Reference in New Issue
Block a user