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 @@ -1013,8 +1013,11 @@ Object.entries(entities).forEach(([key, EntityClass]) => {
10131013 const clickResponse = page . waitForResponse (
10141014 ( response ) =>
10151015 response . url ( ) . includes ( '/api/v1/columns/name/' ) ||
1016+ ( response . url ( ) . includes ( '/columns' ) &&
1017+ response . url ( ) . includes ( 'profile' ) &&
1018+ response . request ( ) . method ( ) === 'GET' ) ||
10161019 response . url ( ) . includes ( `/api/v1/${ entity . endpoint } /name/` ) ,
1017- { timeout : 10000 }
1020+ { timeout : 150000 }
10181021 ) ;
10191022
10201023 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