我的e2e测试中有以下简单的代码行......
var promise = ptor.isElementPresent(element(by.binding('firstName')));
我收到TypeError: Invalid locator
的错误消息。谷歌搜索后我没有看到很多其他人收到此错误。我在哪里犯了错误?
答案 0 :(得分:5)
我相信语法是(删除element(...)
...
var promise = ptor.isElementPresent(by.binding('firstName'));