@@ -65,6 +65,7 @@ export class CreateMachinePage extends BasePage {
65
65
isRootful : boolean = true ,
66
66
enableUserNet : boolean = false ,
67
67
startNow : boolean = true ,
68
+ setAsDefault : boolean = true ,
68
69
) : Promise < ResourcesPage > {
69
70
await playExpect ( this . podmanMachineConfiguration ) . toBeVisible ( ) ;
70
71
await this . podmanMachineName . fill ( machineName ) ;
@@ -82,11 +83,14 @@ export class CreateMachinePage extends BasePage {
82
83
}
83
84
84
85
await this . createMachineButton . click ( ) ;
86
+ await this . page . waitForTimeout ( 60000 ) ;
85
87
86
88
const successfulCreationMessage = this . page . getByText ( 'Successful operation' ) ;
87
89
const goBackToResourcesButton = this . page . getByRole ( 'button' , { name : 'Go back to resources' } ) ;
88
90
89
- await playExpect ( successfulCreationMessage ) . toBeVisible ( { timeout : 100000 } ) ;
91
+ await this . handleConnectionDialog ( machineName , setAsDefault ) ;
92
+
93
+ await playExpect ( successfulCreationMessage ) . toBeVisible ( { timeout : 10000 } ) ;
90
94
await playExpect ( goBackToResourcesButton ) . toBeVisible ( ) ;
91
95
await goBackToResourcesButton . click ( ) ;
92
96
@@ -115,4 +119,23 @@ export class CreateMachinePage extends BasePage {
115
119
const clickableCheckbox = upperElement . getByText ( checkText ) ;
116
120
await clickableCheckbox . click ( ) ;
117
121
}
122
+
123
+ async handleConnectionDialog ( machineName : string , setAsDefault : boolean ) : Promise < void > {
124
+ const connectionDialog = this . page . getByRole ( 'dialog' , { name : 'Podman' } ) ;
125
+ const dialogMessage = connectionDialog . getByText (
126
+ new RegExp (
127
+ "Podman Machine '" +
128
+ machineName +
129
+ "' is running but not the default machine .+ Do you want to set it as default?" ,
130
+ ) ,
131
+ ) ;
132
+ if ( ( await connectionDialog . isVisible ( ) ) && ( await dialogMessage . isVisible ( ) ) ) {
133
+ let handleButtonName = 'Yes' ;
134
+ if ( ! setAsDefault ) {
135
+ handleButtonName = 'Ignore' ;
136
+ }
137
+ const handleButton = connectionDialog . getByRole ( 'button' , { name : handleButtonName } ) ;
138
+ await handleButton . click ( ) ;
139
+ }
140
+ }
118
141
}
0 commit comments