Skip to content

Commit

Permalink
e2e test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
akashrathod28 committed Dec 11, 2023
1 parent 116f3b0 commit e28d09f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class DataTable extends Component {
const sortColumn = await this.getSortedColumnHeaderText();
let sortOrder = await this.getSortingOrder();
if (sortColumn !== label) {
browser.actions().mouseMove(this.getColumnHeaderByLabel(label)).perform();
await browser.actions().mouseMove(this.getColumnHeaderByLabel(label)).perform();
await this.getColumnHeaderByLabel(label).click();
sortOrder = await this.getSortingOrder();
}
Expand Down

0 comments on commit e28d09f

Please sign in to comment.