我想捕获结果中的所有js错误。 我通过phantomjs在html中注入js文件并保存输出。但是想要在执行后捕获结果中的所有js错误。
以下是我的代码:
(?: # this is a package, either A or B, choose one
[^!] # Not a bang
| # or
![^!] # Bang, followed by not-a-bang
)
答案 0 :(得分:0)
String CatchS =(String)js.executeScript(yourJSScript);
executeScript返回Boolean,Long,String,List或WebElement之一。或者null。