We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e18565 commit 4ae8e8dCopy full SHA for 4ae8e8d
ui-tests/test/smoke.spec.ts
@@ -32,7 +32,7 @@ test.describe('Smoke', () => {
32
33
try {
34
// we may have to select the kernel first
35
- await notebook.click('text="Select"', { timeout: 2000 });
+ await notebook.click('text="Select"', { timeout: 5000 });
36
} catch (e) {
37
// The kernel is already selected
38
}
ui-tests/test/utils.ts
@@ -8,7 +8,7 @@ import { Page } from '@playwright/test';
8
export async function runAndAdvance(
9
page: IJupyterLabPageFixture | Page
10
): Promise<void> {
11
- await page.click(".jp-Toolbar-item [data-icon='ui-components:run']");
+ await page.keyboard.press('Shift+Enter');
12
13
14
/**
0 commit comments