문제

This is an error I get when I try to navigate to page, using HtmlUnitDriver:

JavaScript and Cookies need to be supported in order to use the site. To be able to use all of the site's functions, download and install one of the following browsers

WebDriver driver = new HtmlUnitDriver();
driver.get(url);
도움이 되었습니까?

해결책

Turn on JavaScript just by passing in true to the constructor. By Default JavaScript is false so you have to use following code for the same:

WebDriver driver = new HtmlUnitDriver(true);
driver.get(url);

다른 팁

HtmlUnitDriver driver = new HtmlUnitDriver();
driver.setJavascriptEnabled(true);

or

HtmlUnitDriver driver = new HtmlUnitDriver(true);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top