-
-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Java HtmlUnitDriver, the method get() does not load the page #47
Comments
Please provide your complete case. |
|
Java version, 1.8.0_72 |
Sorry but this is too old to work on this. Please open a new issue if you still has problems with the latest version. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi!
I'm having some problems using the driver in a java application, the method get the second time i use it, does not load the page. I'm working on a linux 3.10 machine with java 1.8 and i have the latest distribution of selenium 3.3.1. Here's some the code which im having problems:
DesiredCapabilities cap = new DesiredCapabilities(); cap.setCapability(CapabilityType.PROXY, proxy); cap.setJavascriptEnabled(true); driver = new HtmlUnitDriver(cap); driver.get("http://data.theice.com/MyAccount/Login.aspx?ReturnUrl=~\\ViewData\\Default.aspx");
(... Use some elements...)
Here i simulate a log in process filling the info. and submit the info.
driver.get("http://data.theice.com/ViewData/EndOfDay/FuturesReport.aspx");
<-- Here does not load and remain in the first page.
System.out.println(driver.getTitle());
I tested this solution on a windows machine and it worked normally, however in the linux machine it doesnt load.
I hope you can help me with this problem,
Thank you.
The text was updated successfully, but these errors were encountered: