Skip to content

Commit

Permalink
Check also for visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
judovana committed Aug 2, 2024
1 parent bc16d1a commit edc2d87
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@ public void checkControlIdsExists() throws IOException, SAXException, ExecutionE
Node jsclazz = row.getAttributes().getNamedItem("class");
String jsClazzValue = jsclazz.getTextContent();
assertEquals("class at row " + x, classes[x], jsClazzValue);

HtmlTableRow tableRow = (HtmlTableRow) row;
assertTrue("the element must be visible", tableRow.isDisplayed());
}
}
}
Expand Down

0 comments on commit edc2d87

Please sign in to comment.