Skip to content

Commit

Permalink
Merge pull request #313 from nesrineabdmouleh/fixGoToModuleConfigPage
Browse files Browse the repository at this point in the history
Fix Module Configuration Button for PS version < 1.7.4
  • Loading branch information
nesrineabdmouleh authored Jan 9, 2025
2 parents e25abe3 + c7108a2 commit 1803b4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class InstalledModulesPage extends BOBasePage implements InstalledModulesPageInt

// Selectors
this.selectionLink = '#subtab-AdminModulesCatalog';
this.configureModuleButton = '.dropdown-menu form[action*=\'configure\']';
this.configureModuleButton = '.dropdown-menu form[action*=\'configure\'], .module_action_menu_configure';
this.searchModuleTagInput = '#search-input-group input.pstaggerAddTagInput';
this.searchModuleButton = '#module-search-button';
this.moduleItemName = (moduleTag: string) => `.module-item-list[data-tech-name=${moduleTag}]`;
Expand Down
2 changes: 1 addition & 1 deletion src/versions/develop/pages/BO/modules/autoupgrade/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ class Autoupgrade extends ModuleConfiguration implements ModuleAutoupgradeMainPa
* @return {Promise<string}
*/
async checkUpdateSuccess(page: Page): Promise<string> {
await this.waitForVisibleSelector(page, this.updateProgressBar, 500000);
await this.waitForVisibleSelector(page, this.updateProgressBar, 1000000);

return this.getTextContent(page, this.updateAlertSuccessMessage);
}
Expand Down

0 comments on commit 1803b4f

Please sign in to comment.