File tree 1 file changed +4
-2
lines changed
tests/playwright/src/model/pages
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -42,8 +42,10 @@ export class CreateMachinePage extends BasePage {
42
42
this . heading = this . page . getByRole ( 'heading' , { name : 'Create Podman Machine' } ) ;
43
43
this . podmanMachineConfiguration = this . page . getByRole ( 'form' , { name : 'Properties Information' } ) ;
44
44
this . podmanMachineName = this . podmanMachineConfiguration . getByRole ( 'textbox' , { name : 'Name' } ) ;
45
- this . imagePathBox = this . page . getByRole ( 'textbox' , { name : 'Image Path (Optional) ' } ) ;
46
- this . browseImagesButton = this . page . getByRole ( 'button' , { name : 'button-Image Path (Optional)' } ) ;
45
+ this . imagePathBox = this . podmanMachineConfiguration . getByRole ( 'textbox' , { name : 'Image Path (Optional) ' } ) ;
46
+ this . browseImagesButton = this . podmanMachineConfiguration . getByRole ( 'button' , {
47
+ name : 'button-Image Path (Optional)' ,
48
+ } ) ;
47
49
this . podmanMachineCPUs = this . podmanMachineConfiguration . getByRole ( 'slider' , { name : 'CPU(s)' } ) ;
48
50
this . podmanMachineMemory = this . podmanMachineConfiguration . getByRole ( 'slider' , { name : 'Memory' } ) ;
49
51
this . podmanMachineDiskSize = this . podmanMachineConfiguration . getByRole ( 'slider' , { name : 'Disk size' } ) ;
You can’t perform that action at this time.
0 commit comments