我一直面临 Chrome 浏览器超时问题,日志如下,
[1538530975.003][严重]:从渲染器接收消息超时:57.998 [1538530975.008][严重]:从渲染器接收消息超时:-0.005
经过一些研究发现了一个解决方案(参考:https ://www.skptricks.com/2018/08/timed-out-receiving-message-from-renderer-selenium.html )将chrome选项设置为,
ChromeOptions 选项 = 新 ChromeOptions(); options.setPageLoadStrategy(PageLoadStrategy.NONE);
不确定如何在 Serenity 属性中配置相同的内容。