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
for new webdriver IE and chrome ,maybe api is changed so waitForElement cann't work now.It will not trigger a brower's setTimeout.
I changed this.actionQueue.push(this.webdriverClient.implicitWait.bind(this.webdriverClient, timeout))
to this.webdriverClient.timeouts.bind(this.webdriverClient,'implicit',timeout) it works now.
The text was updated successfully, but these errors were encountered:
for new webdriver IE and chrome ,maybe api is changed so waitForElement cann't work now.It will not trigger a brower's setTimeout.
I changed
this.actionQueue.push(this.webdriverClient.implicitWait.bind(this.webdriverClient, timeout))
to
this.webdriverClient.timeouts.bind(this.webdriverClient,'implicit',timeout)
it works now.The text was updated successfully, but these errors were encountered: