File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ export class AppCatalogPage extends BasePage {
289289 const successMessage = this . page . getByText ( / h a s b e e n u n i n s t a l l e d / i) ;
290290 await this . waiter . waitForVisible ( successMessage , {
291291 description : 'Uninstall success message' ,
292- timeout : 10000
292+ timeout : 30000
293293 } ) ;
294294
295295 this . logger . success ( `App '${ appName } ' uninstalled successfully` ) ;
Original file line number Diff line number Diff line change @@ -32,6 +32,10 @@ export class SocketNavigationPage extends BasePage {
3232 async ( ) => {
3333 this . logger . info ( 'Navigating to Endpoint Detections page' ) ;
3434
35+ // Navigate to Foundry home first to ensure menu is available
36+ await this . navigateToPath ( '/foundry/home' , 'Foundry home' ) ;
37+ await this . page . waitForLoadState ( 'networkidle' ) ;
38+
3539 // Open the hamburger menu
3640 const menuButton = this . page . getByRole ( 'button' , { name : 'Menu' } ) ;
3741 await menuButton . click ( ) ;
You can’t perform that action at this time.
0 commit comments