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

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

Here is a screenshot:

\"PhantomJS

task :  Codeception PHP Testing Framewor         


        
4条回答
  •  粉色の甜心
    2021-02-06 21:30

    The workaround that worked for me is to set the takesScreenshot capability to false.

    DesiredCapabilities caps = new DesiredCapabilities();
    caps.setCapability("takesScreenshot", false);
    

提交回复
热议问题