Skip to content

Commit 306964c

Browse files
authored
CI: Fix visual regression tests (#310)
* Debug CI * Debug
1 parent 7168804 commit 306964c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui-tests/tests/lckr_jupyterlab_variableinspector.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ test('test', async ({ page }) => {
55
await page.getByText('Python 3 (ipykernel) | Idle').waitFor();
66
await page.getByLabel('notebook content').getByRole('textbox').fill('a = 1');
77
await page.keyboard.press('Shift+Enter');
8-
await page.getByRole('textbox').nth(2).fill('b = "hello"');
8+
await page.getByRole('textbox').nth(1).fill('b = "hello"');
99
await page.keyboard.press('Control+Enter');
1010

1111
await page.getByRole('tabpanel').click({
@@ -48,7 +48,7 @@ test('variable filter', async ({ page }) => {
4848
await page.getByText('Python 3 (ipykernel) | Idle').waitFor();
4949
await page.getByLabel('notebook content').getByRole('textbox').fill('a1 = 1');
5050
await page.keyboard.press('Shift+Enter');
51-
await page.getByRole('textbox').nth(2).fill('b1 = "hello"');
51+
await page.getByRole('textbox').nth(1).fill('b1 = "hello"');
5252
await page.keyboard.press('Control+Enter');
5353

5454
await page.getByRole('tabpanel').click({

0 commit comments

Comments
 (0)