@@ -20,9 +20,9 @@ test.describe("datagrid-web filtering multi select", () => {
2020 await expect ( await column ( 2 ) . first ( ) ) . toHaveText ( "Black" ) ;
2121 await expect ( await column ( 2 ) . last ( ) ) . toHaveText ( "Blue" ) ;
2222 await enumSelect ( ) . click ( ) ;
23- await option ( "Pink" ) . click ( { delay : 1 } ) ;
23+ await option ( "Pink" ) . click ( { delay : 10 } ) ;
2424 await expect ( await rows ( ) ) . toHaveCount ( 6 ) ;
25- await option ( "Blush" ) . click ( { delay : 1 } ) ;
25+ await option ( "Blush" ) . click ( { delay : 10 } ) ;
2626 await expect ( await rows ( ) ) . toHaveCount ( 8 ) ;
2727 await page . getByRole ( "columnheader" , { name : "Color (enum)" } ) . getByRole ( "combobox" ) . click ( ) ;
2828 const columnText = await column ( 2 ) . allTextContents ( ) ;
@@ -53,9 +53,9 @@ test.describe("datagrid-web filtering multi select", () => {
5353 await page . waitForLoadState ( "networkidle" ) ;
5454 await expect ( await column ( 3 ) . first ( ) ) . toHaveText ( expectedColumnText [ 0 ] ) ;
5555 await roleSelect ( ) . click ( ) ;
56- await option ( "Economist" ) . click ( { delay : 1 } ) ;
56+ await option ( "Economist" ) . click ( { delay : 10 } ) ;
5757 await expect ( await rows ( ) ) . toHaveCount ( 6 ) ;
58- await option ( "Public librarian" ) . click ( { delay : 1 } ) ;
58+ await option ( "Public librarian" ) . click ( { delay : 10 } ) ;
5959 await expect ( await rows ( ) ) . toHaveCount ( 10 ) ;
6060 await roleSelect ( ) . click ( { delay : 1 } ) ;
6161 await page . waitForTimeout ( 300 ) ;
@@ -80,9 +80,9 @@ test.describe("datagrid-web filtering multi select", () => {
8080 await expect ( await column ( 4 ) . first ( ) ) . toHaveText ( "W.R. Berkley Corporation" ) ;
8181 await expect ( await column ( 4 ) . last ( ) ) . toHaveText ( "PETsMART Inc" ) ;
8282 await companySelect ( ) . click ( { delay : 1 } ) ;
83- await option ( "FMC Corp" ) . click ( { delay : 1 } ) ;
83+ await option ( "FMC Corp" ) . click ( { delay : 10 } ) ;
8484 await expect ( await rows ( ) ) . toHaveCount ( 2 ) ;
85- await option ( "ALLETE, Inc." ) . click ( { delay : 1 } ) ;
85+ await option ( "ALLETE, Inc." ) . click ( { delay : 10 } ) ;
8686 await expect ( await rows ( ) ) . toHaveCount ( 6 ) ;
8787 await page . getByRole ( "columnheader" , { name : "Company" } ) . getByRole ( "combobox" ) . click ( { delay : 1 } ) ;
8888 await page . waitForTimeout ( 300 ) ;
0 commit comments