mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-10-08 14:51:32 +00:00
[ADF-] update library to use new js-api 3.0.0 (#4097)
This commit is contained in:
committed by
Eugenio Romano
parent
2acd1b4e26
commit
3ef7d3b7ea
@@ -0,0 +1,66 @@
|
||||
/*!
|
||||
* @license
|
||||
* Copyright 2016 Alfresco Software, Ltd.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { element, by } from 'protractor';
|
||||
import { Util } from '../../../../util/util';
|
||||
|
||||
export class ChecklistDialog {
|
||||
|
||||
nameField = element(by.css('input[data-automation-id="checklist-name"]'));
|
||||
addChecklistButton = element(by.css('button[id="add-check"] span'));
|
||||
closeButton = element(by.css('button[id="close-check-dialog"] span'));
|
||||
dialogTitle = element(by.id('add-checklist-title'));
|
||||
|
||||
addName(name) {
|
||||
Util.waitUntilElementIsVisible(this.nameField);
|
||||
this.nameField.sendKeys(name);
|
||||
return this;
|
||||
}
|
||||
|
||||
clickCreateChecklistButton() {
|
||||
Util.waitUntilElementIsVisible(this.addChecklistButton);
|
||||
this.addChecklistButton.click();
|
||||
}
|
||||
|
||||
clickCancelButton() {
|
||||
Util.waitUntilElementIsVisible(this.closeButton);
|
||||
this.closeButton.click();
|
||||
}
|
||||
|
||||
getDialogTitle() {
|
||||
Util.waitUntilElementIsVisible(this.dialogTitle);
|
||||
return this.dialogTitle.getText();
|
||||
}
|
||||
|
||||
getNameFieldPlaceholder() {
|
||||
Util.waitUntilElementIsVisible(this.nameField);
|
||||
return this.nameField.getAttribute('placeholder');
|
||||
}
|
||||
|
||||
checkCancelButtonIsEnabled() {
|
||||
Util.waitUntilElementIsVisible(this.closeButton);
|
||||
Util.waitUntilElementIsClickable(this.closeButton);
|
||||
return this;
|
||||
}
|
||||
|
||||
checkAddChecklistButtonIsEnabled() {
|
||||
Util.waitUntilElementIsVisible(this.addChecklistButton);
|
||||
Util.waitUntilElementIsClickable(this.addChecklistButton);
|
||||
return this;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user