Skip to content

Commit

Permalink
[ACS-6427] Locator fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalKinas committed Feb 15, 2024
1 parent 5a1e159 commit 8f2510e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class DataTableComponent extends BaseComponent {
*
* @returns reference to cell element which contains link.
*/
getCellLinkByName = (name: string): Locator => this.getChild('.adf-cell-value span', { hasText: name });
getCellLinkByName = (name: string): Locator => this.getChild('.adf-cell-value span[role="link"]', { hasText: name });

/**
* Method used in cases where we want to localize the element by [aria-label]
Expand Down

0 comments on commit 8f2510e

Please sign in to comment.