[ACA-2302] upgrade to ADF 3.2.0 beta (#1049)

* upgrade to ADF 3.2.0 beta 2

* remove deprecated extension classes

* fix some DL style issues

* update class names

* update cell classes

* update viewer

* fix test

* update angular dependencies

* cleanup login component

* update tests

* fix selector

* fix document list cell selector

* fix viewer extension test

* upgrade to beta3

* fix some tests and disable tests until regression is fixed on ADF side

* disable hyperlink e2e for now

* upgrade to latest alpha

* restore tests
This commit is contained in:
Denys Vuika
2019-03-30 16:48:15 +00:00
committed by GitHub
parent 1d349c68fd
commit 672d6a75b1
32 changed files with 3483 additions and 2251 deletions

View File

@@ -34,16 +34,16 @@ export class DataTable extends Component {
root: 'adf-datatable',
head: '.adf-datatable-header',
columnHeader: '.adf-datatable-row .adf-datatable-table-cell-header',
columnHeader: '.adf-datatable-row .adf-datatable-cell-header',
sortedColumnHeader: `
.adf-data-table__header--sorted-asc,
.adf-data-table__header--sorted-desc
.adf-datatable__header--sorted-asc,
.adf-datatable__header--sorted-desc
`,
body: '.adf-datatable-body',
row: '.adf-datatable-row[role]',
selectedRow: '.adf-datatable-row.adf-is-selected',
cell: '.adf-data-table-cell',
cell: '.adf-datatable-cell-container',
locationLink: '.aca-location-link',
nameLink: '.adf-datatable-link',
libraryRole: 'adf-library-role-column',

View File

@@ -37,7 +37,7 @@ export class Viewer extends Component {
closeBtn: '.adf-viewer-close-button',
fileTitle: '.adf-viewer__file-title',
viewerExtensionContent: 'app-preview-extension'
viewerExtensionContent: 'adf-preview-extension'
};
root: ElementFinder = browser.$(Viewer.selectors.root);