PhantomJS hangs for a long time saying “Asynchronous Sessions clean-up phase starting NOW”

后端 未结 4 770
没有蜡笔的小新
没有蜡笔的小新 2021-02-06 20:41

Here is a screenshot:

\"PhantomJS

task :  Codeception PHP Testing Framewor         


        
4条回答
  •  后悔当初
    2021-02-06 21:21

    In Java, I used below code and it got solved

    DesiredCapabilities caps = new DesiredCapabilities();
    Change - WebDriver driver = new PhantomJSDriver(caps);
    with - this.driver = new PhantomJSDriver(caps);
    

提交回复
热议问题