It seems that code like the following is not working anymore on latest firefox: expect(await element(by.model("modelname")).getAttribute("value")).toEqual("42");
The function getAttribute seems to always return null;
The same code always worked on previous version of firefox and continue to work on all other browsers.
I suspect this could be due to an incompatibility with recent firefox and the version of selenium included in protractor (that is unfortunately still 3.6.0).
It seems that code like the following is not working anymore on latest firefox:
expect(await element(by.model("modelname")).getAttribute("value")).toEqual("42");
The function getAttribute seems to always return null;
The same code always worked on previous version of firefox and continue to work on all other browsers.
I suspect this could be due to an incompatibility with recent firefox and the version of selenium included in protractor (that is unfortunately still 3.6.0).