Skip to content

Commit

Permalink
chore(misc): wip
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescoBorzi committed Jun 16, 2020
1 parent 5e4dc41 commit 5cf74fb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/app/shared/testing/page-object.ts
Expand Up @@ -147,7 +147,6 @@ export abstract class PageObject<ComponentType> {
getDatatableRowExternal(rowIndex: number, assert = true, datatableSelector?: string): HTMLElement {
datatableSelector = this.getDefaultSelectorIfNull(datatableSelector);
const element: HTMLElement = document.querySelector(this.getDatatableRowSelector(datatableSelector, rowIndex));
console.log(this.getDatatableRowSelector(datatableSelector, rowIndex));
if (assert) {
expect(element).toBeTruthy(`Unable to find row ${rowIndex} of ${datatableSelector}`);
}
Expand Down

0 comments on commit 5cf74fb

Please sign in to comment.