We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The problem is in this method:
thucydides/thucydides-core/src/main/java/net/thucydides/core/pages/components/HtmlTable.java
Line 219 in df33ddf
This makes the class completely ignore <th> cells in table rows, making it impossible to match on the content of those cells.
<th>
The xpath should be changed to look for <td> or <th>, as per the HTML5 spec: https://html.spec.whatwg.org/multipage/tables.html#the-th-element
<td>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The problem is in this method:
thucydides/thucydides-core/src/main/java/net/thucydides/core/pages/components/HtmlTable.java
Line 219 in df33ddf
This makes the class completely ignore
<th>
cells in table rows, making it impossible to match on the content of those cells.The xpath should be changed to look for
<td>
or<th>
, as per the HTML5 spec:https://html.spec.whatwg.org/multipage/tables.html#the-th-element
The text was updated successfully, but these errors were encountered: