File tree Expand file tree Collapse file tree
openmetadata-ui/src/main/resources/ui/playwright/e2e/Pages Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1009,8 +1009,11 @@ Object.entries(entities).forEach(([key, EntityClass]) => {
10091009 const clickResponse = page . waitForResponse (
10101010 ( response ) =>
10111011 response . url ( ) . includes ( '/api/v1/columns/name/' ) ||
1012+ ( response . url ( ) . includes ( '/columns' ) &&
1013+ response . url ( ) . includes ( 'profile' ) &&
1014+ response . request ( ) . method ( ) === 'GET' ) ||
10121015 response . url ( ) . includes ( `/api/v1/${ entity . endpoint } /name/` ) ,
1013- { timeout : 10000 }
1016+ { timeout : 150000 }
10141017 ) ;
10151018
10161019 await firstLink . click ( ) ;
@@ -1062,8 +1065,11 @@ Object.entries(entities).forEach(([key, EntityClass]) => {
10621065 const intermediateClickResponse = page . waitForResponse (
10631066 ( response ) =>
10641067 response . url ( ) . includes ( '/api/v1/columns/name/' ) ||
1068+ ( response . url ( ) . includes ( '/columns' ) &&
1069+ response . url ( ) . includes ( 'profile' ) &&
1070+ response . request ( ) . method ( ) === 'GET' ) ||
10651071 response . url ( ) . includes ( `/api/v1/${ entity . endpoint } /name/` ) ,
1066- { timeout : 10000 }
1072+ { timeout : 150000 }
10671073 ) ;
10681074
10691075 await intermediateLink . click ( ) ;
You can’t perform that action at this time.
0 commit comments