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.
function(){element(by.buttonText('Button 1')).click();// fails in Chrome, works in Firefoxelement(by.buttonText('BUTTON 1')).click();// fails in Firefox, works in Chrome}
When the text is transformed via CSS property text-transform to uppercase, Chrome can find the element only by capitalized text (same as user see it). In the same case, Firefox can find the element by original text (same as written in HTML).
Here is the main extracts from code:
app.css
app.html
app.spec.js
When the text is transformed via CSS property text-transform to uppercase, Chrome can find the element only by capitalized text (same as user see it). In the same case, Firefox can find the element by original text (same as written in HTML).
See full demo here:
https://github.com/igorshubovych/protractor-ff-issue
The text was updated successfully, but these errors were encountered: