File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
eform-client/e2e/Page objects Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -70,14 +70,13 @@ class PluginRowObject {
7070
7171 public async getRow ( rowNum : number ) : Promise < PluginRowObject > {
7272 this . rowNumber = rowNum - 1 ;
73-
73+ await this . clickActionsMenu ( ) ;
7474 this . id = + await ( $ ( '#plugin-id' + this . rowNumber ) ) . getText ( ) ;
7575 this . name = await ( await $ ( '#plugin-name' + this . rowNumber ) ) . getText ( ) ;
7676 this . version = await ( await $ ( '#plugin-version' + this . rowNumber ) ) . getText ( ) ;
7777 this . settingsBtn = await $ ( '#plugin-settings-link' + this . rowNumber ) ;
7878 this . statusBtn = await $ ( '#plugin-status-button' + this . rowNumber ) ;
7979 // To get status, we need to open the menu first since the button is inside mat-menu
80- await this . clickActionsMenu ( ) ;
8180 const statusIcon = await this . statusBtn . $ ( 'mat-icon' ) ;
8281 this . status = await statusIcon . getText ( ) ;
8382 // Close the menu by clicking elsewhere or pressing escape
You can’t perform that action at this time.
0 commit comments