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.
I have been running e2e tests for a web app in chrome. On running the same tests in Firefox it causes issue due to text transform.
The login button has a text-transform of UPPERCASE.
So element(by.cssContainingText('button','LOG IN') works in chrome.
but requires element(by.cssContainingText('button','Log In') to work in firefox.
The solution would be to find out the browser and put text likewise? Am I missing something here?
P.S. - Have not tested in IE / Safari. Chrome v37. Firefox v31
The text was updated successfully, but these errors were encountered:
Hi,
I have been running e2e tests for a web app in chrome. On running the same tests in Firefox it causes issue due to text transform.
The login button has a text-transform of UPPERCASE.
So element(by.cssContainingText('button','LOG IN') works in chrome.
but requires element(by.cssContainingText('button','Log In') to work in firefox.
The solution would be to find out the browser and put text likewise? Am I missing something here?
P.S. - Have not tested in IE / Safari. Chrome v37. Firefox v31
The text was updated successfully, but these errors were encountered: