Skip to content

Commit

Permalink
Fix page object function
Browse files Browse the repository at this point in the history
  • Loading branch information
m-akinc committed Oct 16, 2024
1 parent 42dfd43 commit 8904d67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ export class TablePageObject<T extends TableRecord> {
public columnRightDividerHasActiveStyling(columnIndex: number): boolean {
const divider = this.getColumnDivider(columnIndex, false);
const currentColor = parseColor(
window.getComputedStyle(divider).borderColor
window.getComputedStyle(divider).borderLeftColor
);
const hoverColor = parseColor(borderHoverColor.getValueFor(divider))!;
return currentColor!.equalValue(hoverColor);
Expand Down

0 comments on commit 8904d67

Please sign in to comment.