mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-4390]Added copyContent datatable cell tests (#4614)
* Modified data-table page on demo-shell to make copyClipboard possible to test * Add a new page in demo-shell. Add copyContent automated tests.
This commit is contained in:
committed by
Eugenio Romano
parent
550c0006c9
commit
bcdfcee397
@@ -21,7 +21,18 @@ import { BrowserVisibility } from '@alfresco/adf-testing';
|
||||
|
||||
export class DataTablePage {
|
||||
|
||||
dataTable = new DataTableComponentPage();
|
||||
columns = {
|
||||
id: 'Id',
|
||||
name: 'Name',
|
||||
createdBy: 'Created By'
|
||||
};
|
||||
|
||||
data = {
|
||||
copyClipboardDataTable: 'copyClipboard-datatable',
|
||||
defaultTable: 'datatable'
|
||||
};
|
||||
|
||||
dataTable;
|
||||
multiSelect = element(by.css(`div[data-automation-id='multiselect'] label > div[class='mat-checkbox-inner-container']`));
|
||||
reset = element(by.xpath(`//span[contains(text(),'Reset to default')]/..`));
|
||||
selectionButton = element(by.css(`div[class='mat-select-arrow']`));
|
||||
@@ -33,6 +44,15 @@ export class DataTablePage {
|
||||
replaceRowsElement = element(by.xpath(`//span[contains(text(),'Replace rows')]/..`));
|
||||
replaceColumnsElement = element(by.xpath(`//span[contains(text(),'Replace columns')]/..`));
|
||||
createdOnColumn = element(by.css(`div[data-automation-id='auto_id_createdOn']`));
|
||||
pasteClipboardInput = element(by.css(`input[data-automation-id='paste clipboard input']`));
|
||||
|
||||
constructor(data?) {
|
||||
if (this.data[data]) {
|
||||
this.dataTable = new DataTableComponentPage(element(by.css(`div[data-automation-id='` + this.data[data] + `']`)));
|
||||
} else {
|
||||
this.dataTable = new DataTableComponentPage(element(by.css(`div[data-automation-id='` + this.data.defaultTable + `']`)));
|
||||
}
|
||||
}
|
||||
|
||||
insertFilter(filterText) {
|
||||
const inputFilter = element(by.css(`#adf-datatable-filter-input`));
|
||||
@@ -46,7 +66,7 @@ export class DataTablePage {
|
||||
}
|
||||
|
||||
replaceRows(id) {
|
||||
const rowID = this.dataTable.getRowElement('Id', id);
|
||||
const rowID = this.dataTable.getRowElement(this.columns.id, id);
|
||||
BrowserVisibility.waitUntilElementIsVisible(rowID);
|
||||
this.replaceRowsElement.click();
|
||||
BrowserVisibility.waitUntilElementIsNotVisible(rowID);
|
||||
@@ -69,7 +89,7 @@ export class DataTablePage {
|
||||
}
|
||||
|
||||
checkRowIsNotSelected(rowNumber) {
|
||||
const isRowSelected = this.dataTable.getRowElement('Id', rowNumber)
|
||||
const isRowSelected = this.dataTable.getRowElement(this.columns.id, rowNumber)
|
||||
.element(by.xpath(`ancestor::div[contains(@class, 'adf-datatable-row custom-row-style ng-star-inserted is-selected')]`));
|
||||
BrowserVisibility.waitUntilElementIsNotOnPage(isRowSelected);
|
||||
}
|
||||
@@ -96,13 +116,13 @@ export class DataTablePage {
|
||||
}
|
||||
|
||||
clickCheckbox(rowNumber) {
|
||||
const checkbox = this.dataTable.getRowElement('Id', rowNumber).element(by.xpath(`ancestor::div[contains(@class, 'adf-datatable-row')]//mat-checkbox/label`));
|
||||
const checkbox = this.dataTable.getRowElement(this.columns.id, rowNumber).element(by.xpath(`ancestor::div[contains(@class, 'adf-datatable-row')]//mat-checkbox/label`));
|
||||
BrowserVisibility.waitUntilElementIsVisible(checkbox);
|
||||
checkbox.click();
|
||||
}
|
||||
|
||||
selectRow(rowNumber) {
|
||||
const locator = this.dataTable.getRowElement('Id', rowNumber);
|
||||
const locator = this.dataTable.getRowElement(this.columns.id, rowNumber);
|
||||
BrowserVisibility.waitUntilElementIsVisible(locator);
|
||||
BrowserVisibility.waitUntilElementIsClickable(locator);
|
||||
locator.click();
|
||||
@@ -110,7 +130,7 @@ export class DataTablePage {
|
||||
}
|
||||
|
||||
selectRowWithKeyboard(rowNumber) {
|
||||
const row = this.dataTable.getRowElement('Id', rowNumber);
|
||||
const row = this.dataTable.getRowElement(this.columns.id, rowNumber);
|
||||
browser.actions().sendKeys(protractor.Key.COMMAND).click(row).perform();
|
||||
}
|
||||
|
||||
@@ -122,6 +142,47 @@ export class DataTablePage {
|
||||
}
|
||||
|
||||
getRowCheckbox(rowNumber) {
|
||||
return this.dataTable.getRowElement('Id', rowNumber).element(by.xpath(`ancestor::div/div/mat-checkbox[contains(@class, 'mat-checkbox-checked')]`));
|
||||
return this.dataTable.getRowElement(this.columns.id, rowNumber).element(by.xpath(`ancestor::div/div/mat-checkbox[contains(@class, 'mat-checkbox-checked')]`));
|
||||
}
|
||||
|
||||
getCopyContentTooltip() {
|
||||
return this.dataTable.getCopyContentTooltip();
|
||||
}
|
||||
|
||||
mouseOverNameColumn(name) {
|
||||
return this.dataTable.mouseOverColumn(this.columns.name, name);
|
||||
}
|
||||
|
||||
mouseOverCreatedByColumn(name) {
|
||||
return this.dataTable.mouseOverColumn(this.columns.createdBy, name);
|
||||
}
|
||||
|
||||
mouseOverIdColumn(name) {
|
||||
return this.dataTable.mouseOverColumn(this.columns.id, name);
|
||||
}
|
||||
|
||||
clickOnIdColumn(name) {
|
||||
return this.dataTable.clickColumn(this.columns.id, name);
|
||||
}
|
||||
|
||||
clickOnNameColumn(name) {
|
||||
return this.dataTable.clickColumn(this.columns.name, name);
|
||||
}
|
||||
|
||||
clickOnCreatedByColumn(name) {
|
||||
return this.dataTable.clickColumn(this.columns.createdBy, name);
|
||||
}
|
||||
|
||||
pasteClipboard() {
|
||||
this.pasteClipboardInput.clear();
|
||||
BrowserVisibility.waitUntilElementIsVisible(this.pasteClipboardInput);
|
||||
this.pasteClipboardInput.click();
|
||||
this.pasteClipboardInput.sendKeys(protractor.Key.chord(protractor.Key.SHIFT, protractor.Key.INSERT));
|
||||
return this;
|
||||
}
|
||||
|
||||
getClipboardInputText() {
|
||||
BrowserVisibility.waitUntilElementIsVisible(this.pasteClipboardInput);
|
||||
return this.pasteClipboardInput.getAttribute('value');
|
||||
}
|
||||
}
|
||||
|
@@ -27,6 +27,7 @@ export class NavigationBarPage {
|
||||
contentServicesButton = element(by.css('a[data-automation-id="Content Services"]'));
|
||||
dataTableButton = element(by.css('a[data-automation-id="Datatable"]'));
|
||||
dataTableNestedButton = element(by.css('button[data-automation-id="Datatable"]'));
|
||||
dataTableCopyContentButton = element(by.css('button[data-automation-id="Copy Content"]'));
|
||||
taskListButton = element(by.css("a[data-automation-id='Task List']"));
|
||||
configEditorButton = element(by.css('a[data-automation-id="Configuration Editor"]'));
|
||||
processServicesButton = element(by.css('a[data-automation-id="Process Services"]'));
|
||||
@@ -59,6 +60,13 @@ export class NavigationBarPage {
|
||||
this.dataTableNestedButton.click();
|
||||
}
|
||||
|
||||
navigateToCopyContentDatatable() {
|
||||
BrowserVisibility.waitUntilElementIsVisible(this.dataTableButton);
|
||||
this.dataTableButton.click();
|
||||
BrowserVisibility.waitUntilElementIsVisible(this.dataTableCopyContentButton);
|
||||
this.dataTableCopyContentButton.click();
|
||||
}
|
||||
|
||||
clickContentServicesButton() {
|
||||
BrowserVisibility.waitUntilElementIsVisible(this.contentServicesButton);
|
||||
this.contentServicesButton.click();
|
||||
|
Reference in New Issue
Block a user