我正在玩Selenium和PhantomJS.我正在尝试从网页中绘制所有元素.当我检索一些网页然后我尝试获取任何web元素的位置时,当我在我的代码上选择web元素时,我收到此错误:
org.openqa.selenium.WebDriverException: {"errorMessage":"Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: \"script-src assets-cdn.github.com\".\n","request":{"headers":{"Accept-Encoding":"gzip,deflate","Cache-Control":"no-cache","Connection":"Keep-Alive","Host":"localhost:26310","User-Agent":"Apache-HttpClient/4.4.1 (Java/1.8.0_45)"},"httpVersion":"1.1","method":"GET","url":"/location","urlParsed":{"anchor":"","query":"","file":"location","directory":"/","path":"/location","relative":"/location","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/location","queryKey":{},"chunks":["location"]},"urlOriginal":"/session/77ee7e10-1077-11e6-9f8f-1f750417371e/element/%3Awdc%3A1462201609875/location"}}
Run Code Online (Sandbox Code Playgroud)
我的代码如下.我正在使用Jsoup来获取元素,因为使用selenium我经常遇到与前面提到的相同的错误:
WebDriver driver = new PhantomJSDriver();
driver.manage().window().setSize(new Dimension(1366, 768));
driver.get(URL);
Document doc = Jsoup.parse(driver.getPageSource());
Elements e1 = doc.body().getAllElements();
ArrayList<String> tags = new ArrayList<>();
for (Element e : e1) {
if (tags.indexOf(e.tagName()) == -1) {
tags.add(e.tagName());
List<WebElement> query = null;
if (driver.findElements(By.tagName(e.tagName())).size() < 1) {
continue;
}
try {
query = driver.findElements(By.tagName(e.tagName()));
} …Run Code Online (Sandbox Code Playgroud)