mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-09-17 14:21:29 +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
@@ -55,7 +55,6 @@ export class ProcessListDemoPage {
|
||||
|
||||
async clickResetButton(): Promise<void> {
|
||||
await BrowserActions.click(this.resetButton);
|
||||
|
||||
}
|
||||
|
||||
async checkErrorMessageIsDisplayed(error): Promise<void> {
|
||||
@@ -92,12 +91,10 @@ export class ProcessListDemoPage {
|
||||
}
|
||||
|
||||
async addProcessDefinitionId(procDefinitionId): Promise<void> {
|
||||
await BrowserActions.click(this.processDefinitionInput);
|
||||
await BrowserActions.clearSendKeys(this.processDefinitionInput, procDefinitionId);
|
||||
}
|
||||
|
||||
async addProcessInstanceId(procInstanceId): Promise<void> {
|
||||
await BrowserActions.click(this.processInstanceInput);
|
||||
await BrowserActions.clearSendKeys(this.processInstanceInput, procInstanceId);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user