You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
Report is that if the element uses text-transform (http://www.w3schools.com/cssref/pr_text_text-transform.asp), one browser will match uppercase and one will match in original case. We should see if there's a way to unify these that makes sense.
The text was updated successfully, but these errors were encountered:
would actually fix the issue or at least the different behaviour on Chrome and Firefox. The same code is in findByButtonText and findByPartialButtonText methods.
On Chrome element.innerText returns modified text and element.textContent returns unmodified text.
On Firefox element.innerText returns undefined and element.textContent returns unmodified text.
Report is that if the element uses text-transform (http://www.w3schools.com/cssref/pr_text_text-transform.asp), one browser will match uppercase and one will match in original case. We should see if there's a way to unify these that makes sense.
The text was updated successfully, but these errors were encountered: