Protractor - ScriptTimeoutError: asynchronous script timeout: result was not received in 20 seconds

前端 未结 2 1362
失恋的感觉
失恋的感觉 2020-12-31 10:03

I\'m new to Protractor and I am trying to run my script.

describe(\'Navigator homepage\', function() {
it(\'should proceed to login\', function() {
browser.         


        
2条回答
  •  庸人自扰
    2020-12-31 10:33

    I had a similar issue, I solved it by turning on ignore sync

    browser.ignoreSynchronization = true
    

提交回复
热议问题