39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
/*
|
|
* Copyright (c) 2015-2018 Red Hat, Inc.
|
|
* This program and the accompanying materials are made
|
|
* available under the terms of the Eclipse Public License 2.0
|
|
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
*
|
|
* SPDX-License-Identifier: EPL-2.0
|
|
*
|
|
* Contributors:
|
|
* Red Hat, Inc. - initial API and implementation
|
|
*/
|
|
'use strict';
|
|
|
|
let Utils = function() {
|
|
|
|
this.getVisibleInputElement = (containerElement) => {
|
|
return containerElement.$$('input').filter((elem, index) => {
|
|
return elem.isDisplayed().then((isDisplayed) => {
|
|
return isDisplayed;
|
|
});
|
|
}).get(0);
|
|
};
|
|
|
|
this.getRadioButtonByLabel = (containerElement, label) => {
|
|
return containerElement.element(by.cssContainingText('md-radio-button', label));
|
|
};
|
|
|
|
this.getRandomName = (name) => {
|
|
return name + (('0000' + (Math.random() * Math.pow(36, 4) << 0).toString(36)).slice(-4));
|
|
};
|
|
|
|
this.scrollToBottom = (elem) => {
|
|
return browser.executeScript('return angular.element(arguments[0]).scrollTop(angular.element(arguments[0])[0].scrollHeight)', elem);
|
|
}
|
|
|
|
};
|
|
|
|
module.exports = new Utils();
|