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 has been archived by the owner on Jul 29, 2024. It is now read-only.
I kept getting Maximum call stack size exceeded errors when creating a new test, and had to bug a coworker to figure out the cause. I was forgetting to call getText() on the WebElement in my expectation. E.g.
var textElement = tractor.findElement(protractor.By.css('.termContent '));
expect(textElement).toContain('An E2E testing framework essentially');
Should be expect(textElement.getText()) ...
It would be nice to have better error messaging for these kinds of errors.
The text was updated successfully, but these errors were encountered:
I kept getting Maximum call stack size exceeded errors when creating a new test, and had to bug a coworker to figure out the cause. I was forgetting to call getText() on the WebElement in my expectation. E.g.
Should be
expect(textElement.getText()) ...
It would be nice to have better error messaging for these kinds of errors.
The text was updated successfully, but these errors were encountered: