mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* move e2e to ADF main repo * lint e2e test * enable first set of tests * enable test * firs test js-api integrated * try change name protractor demo shell file * remove fdescribe * Update .travis.yml * exclude failing test and rewrite analytics component with JS-API * remove fdescribe * move first part of tests to js-api * refactor test alfresco-js-api * replace js-api step 3 * remove adf prefix * remove unused code * remove unused part 2 * add option in e2e test for single test and browser * exclude temp failing test * refactoring test step 1 * refactoring test step 2 * refactoring test step 3 * refactoring test step 4 * refactoring test step 5 * run against localhost and proxy options * fix command * improve configuration * improve configuration * use dev configuratio * fix defering * comment out not working remotely test * fix promise login page e2e * remove console log * change test * revert * improve utils * improve task list test util add also numbers in generation of the email * remove part of the multi selector * reinsert trashcan test * uncomment document list test * try increase delay in search sorting * improve document list selector * execute different util methods * Upload error screenshot * make oncomplete async * add z-finish screenshot workaround * option save * remove fit
136 lines
5.3 KiB
JavaScript
136 lines
5.3 KiB
JavaScript
/*!
|
|
* @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.
|
|
*/
|
|
|
|
var Util = require('../../util/util');
|
|
|
|
var PaginationPage = function () {
|
|
|
|
var itemsPerPageDropdown = element(by.css("div[class*='adf-pagination__perpage-block'] button"));
|
|
var pageSelectorDropDown = element(by.css("div[class*='adf-pagination__page-selector']"));
|
|
var itemsPerPage = element(by.css("span[class='adf-pagination__max-items']"));
|
|
var currentPage = element(by.css("span[class='adf-pagination__current-page']"));
|
|
var totalPages = element(by.css("span[class='adf-pagination__total-pages']"));
|
|
var paginationRange = element(by.css("span[class='adf-pagination__range']"));
|
|
var nextPageButton = element(by.css("button[class*='adf-pagination__next-button']"));
|
|
var previousPageButton = element(by.css("button[class*='adf-pagination__previous-button']"));
|
|
var nextButtonDisabled = element(by.css("button[class*='adf-pagination__next-button'][disabled]"));
|
|
var previousButtonDisabled = element(by.css("button[class*='adf-pagination__previous-button'][disabled]"));
|
|
var pageDropDown = element(by.css("div[class*='adf-pagination__actualinfo-block'] button"));
|
|
var pageDropDownOptions = by.css("div[class*='mat-menu-content'] button");
|
|
var paginationSection = element(by.css("adf-pagination"));
|
|
var paginationSectionEmpty = element(by.css("adf-pagination[class*='adf-pagination__empty ng-star-inserted']"));
|
|
|
|
this.selectItemsPerPage = function (item) {
|
|
Util.waitUntilElementIsVisible(itemsPerPageDropdown);
|
|
Util.waitUntilElementIsClickable(itemsPerPageDropdown);
|
|
browser.actions().mouseMove(itemsPerPageDropdown).perform();
|
|
Util.waitUntilElementIsVisible(itemsPerPageDropdown);
|
|
Util.waitUntilElementIsClickable(itemsPerPageDropdown).then(()=>{
|
|
browser.driver.sleep(2000);
|
|
itemsPerPageDropdown.click();
|
|
});
|
|
Util.waitUntilElementIsVisible(pageSelectorDropDown);
|
|
|
|
var itemsPerPage = element.all(by.cssContainingText(".mat-menu-item", item)).first();
|
|
Util.waitUntilElementIsClickable(itemsPerPage);
|
|
Util.waitUntilElementIsVisible(itemsPerPage);
|
|
itemsPerPage.click();
|
|
return this;
|
|
};
|
|
|
|
this.checkPaginationIsNotDisplayed = function () {
|
|
Util.waitUntilElementIsOnPage(paginationSectionEmpty);
|
|
return this;
|
|
};
|
|
|
|
this.getCurrentItemsPerPage = function () {
|
|
Util.waitUntilElementIsVisible(itemsPerPage);
|
|
return itemsPerPage.getText();
|
|
};
|
|
|
|
this.getCurrentPage = function () {
|
|
Util.waitUntilElementIsVisible(paginationSection);
|
|
Util.waitUntilElementIsVisible(currentPage);
|
|
return currentPage.getText();
|
|
};
|
|
|
|
this.getTotalPages = function () {
|
|
Util.waitUntilElementIsVisible(totalPages);
|
|
return totalPages.getText();
|
|
};
|
|
|
|
this.getPaginationRange = function () {
|
|
Util.waitUntilElementIsVisible(paginationRange);
|
|
return paginationRange.getText();
|
|
};
|
|
|
|
this.clickOnNextPage = function () {
|
|
Util.waitUntilElementIsVisible(nextPageButton);
|
|
Util.waitUntilElementIsClickable(nextPageButton);
|
|
return nextPageButton.click();
|
|
};
|
|
|
|
this.clickOnPageDropdown = function () {
|
|
Util.waitUntilElementIsVisible(pageDropDown);
|
|
Util.waitUntilElementIsClickable(pageDropDown);
|
|
return pageDropDown.click();
|
|
};
|
|
|
|
this.clickOnPageDropdownOption = function (item) {
|
|
Util.waitUntilElementIsVisible(element.all(pageDropDownOptions).first());
|
|
var option = element(by.cssContainingText("div[class*='mat-menu-content'] button", item));
|
|
Util.waitUntilElementIsVisible(option);
|
|
option.click();
|
|
return this;
|
|
};
|
|
|
|
this.getPageDropdownOptions = function() {
|
|
var deferred = protractor.promise.defer();
|
|
Util.waitUntilElementIsVisible(element.all(pageDropDownOptions).first());
|
|
var initialList = [];
|
|
element.all(pageDropDownOptions).each(function(element) {
|
|
element.getText().then(function(text) {
|
|
if(text !== '') {
|
|
initialList.push(text);
|
|
};
|
|
});
|
|
}).then(function () {
|
|
deferred.fulfill(initialList);
|
|
});
|
|
return deferred.promise;
|
|
};
|
|
|
|
this.checkNextPageButtonIsDisabled = function() {
|
|
Util.waitUntilElementIsVisible(nextButtonDisabled);
|
|
};
|
|
|
|
this.checkPreviousPageButtonIsDisabled = function() {
|
|
Util.waitUntilElementIsVisible(previousButtonDisabled);
|
|
};
|
|
|
|
this.checkNextPageButtonIsEnabled = function() {
|
|
Util.waitUntilElementIsNotOnPage(nextButtonDisabled);
|
|
};
|
|
|
|
this.checkPreviousPageButtonIsEnabled = function() {
|
|
Util.waitUntilElementIsNotOnPage(previousButtonDisabled);
|
|
};
|
|
|
|
};
|
|
module.exports = PaginationPage;
|
|
|