mirror of
https://github.com/ansible/awx.git
synced 2026-03-03 01:38:50 -03:30
Updating configuration/settings page
This commit is contained in:
@@ -14,6 +14,17 @@ const commands = [{
|
||||
return this.navigate();
|
||||
},
|
||||
selectSubcategory (name) {
|
||||
const spinny = 'div.spinny';
|
||||
const categoryName = `//*[text() = '${name}']`;
|
||||
|
||||
this.api.useXpath();
|
||||
this.api.waitForElementVisible(categoryName);
|
||||
this.api.click(categoryName);
|
||||
this.api.useCss();
|
||||
|
||||
return this;
|
||||
},
|
||||
selectDropDownContainer (name) {
|
||||
const spinny = 'div.spinny';
|
||||
const select = '#configure-dropdown-nav';
|
||||
const arrow = `${select} + span span[class$="arrow"]`;
|
||||
|
||||
Reference in New Issue
Block a user