mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[AAE-1178] ADF - deleted un-necessary steps (#5335)
* [AAE-1178] e2e/pages/adf - deleted un-necessary steps waitUntilElementIsVisble & waitUntilElementIsClickable before click() action & clearSendKeys() * [AAE-1178] lib & cloud - deleted un-necessary steps waitUntilElementIsVisble & waitUntilElementIsClickable before click() action & clearSendKeys()
This commit is contained in:
committed by
Eugenio Romano
parent
5c7cd57368
commit
2cc7fe7efe
@@ -54,7 +54,6 @@ export class StartProcessPage {
|
||||
}
|
||||
|
||||
async enterProcessName(name): Promise<void> {
|
||||
await BrowserVisibility.waitUntilElementIsVisible(this.processNameInput);
|
||||
await BrowserActions.clearSendKeys(this.processNameInput, name);
|
||||
}
|
||||
|
||||
@@ -84,8 +83,6 @@ export class StartProcessPage {
|
||||
}
|
||||
|
||||
async typeProcessDefinition(name): Promise<void> {
|
||||
await BrowserVisibility.waitUntilElementIsVisible(this.processDefinition);
|
||||
await BrowserVisibility.waitUntilElementIsClickable(this.processDefinition);
|
||||
await BrowserActions.clearSendKeys(this.processDefinition, name);
|
||||
}
|
||||
|
||||
@@ -99,7 +96,6 @@ export class StartProcessPage {
|
||||
}
|
||||
|
||||
async clickFormStartProcessButton(): Promise<void> {
|
||||
await BrowserVisibility.waitUntilElementIsClickable(this.formStartProcessButton);
|
||||
await BrowserActions.click(this.formStartProcessButton);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user