File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
tests/e2e/Digv2/ComplexFields Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 11/* eslint-disable no-undef */
22const { test, expect } = require ( '@playwright/test' ) ;
3+
34const config = require ( '../../../config' ) ;
45const common = require ( '../../../common' ) ;
56
67test . beforeEach ( async ( { page } ) => {
78 await page . setViewportSize ( { width : 1720 , height : 1080 } ) ;
8- await page . goto ( 'http://localhost:3502/portal' ) ;
9+ await page . goto ( 'http://localhost:3502/portal' , { waitUntil : 'networkidle' } ) ;
910} ) ;
1011
1112test . describe ( 'E2E test' , ( ) => {
@@ -64,7 +65,7 @@ test.describe('E2E test', () => {
6465 await selectedDisplayAs . click ( ) ;
6566 await page . locator ( 'li:has-text("Table")' ) . click ( ) ;
6667
67- const tableRows = page . locator ( 'div[id="simple-table-manual "]' ) ;
68+ const tableRows = page . locator ( 'div[id="list-view "]' ) ;
6869 await expect ( tableRows ) . toBeVisible ( ) ;
6970 } , 10000 ) ;
7071} ) ;
You can’t perform that action at this time.
0 commit comments