mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
fix redirection for multiple 401 in a row (#690)
* fix redirection for multiple 401 in a row * update to ADF 2.6.0 * update e2e test
This commit is contained in:
@@ -33,12 +33,12 @@ export class ShareDialog extends Component {
|
||||
|
||||
title: '.mat-dialog-title',
|
||||
content: '.mat-dialog-content',
|
||||
button: '.mat-button'
|
||||
button: `[data-automation-id='adf-share-dialog-close']`
|
||||
};
|
||||
|
||||
title: ElementFinder = this.component.element(by.css(ShareDialog.selectors.title));
|
||||
content: ElementFinder = this.component.element(by.css(ShareDialog.selectors.content));
|
||||
closeButton: ElementFinder = this.component.element(by.cssContainingText(ShareDialog.selectors.button, 'CLOSE'));
|
||||
closeButton: ElementFinder = this.component.element(by.css(ShareDialog.selectors.button));
|
||||
|
||||
constructor(ancestor?: ElementFinder) {
|
||||
super(ShareDialog.selectors.root, ancestor);
|
||||
|
Reference in New Issue
Block a user