I have a problem when using RemoteBrowser, htmlunit and running a test that checks the validation message in a modal windows which only shows in the pagesource after the AJAX call is made post click on submit.
The issue is that the dynamic page source is never getting updated when I use htmlUnit, if I use Firefox the pagesource is getting updated with the element I am looking for.
Ill give the page source as it is updated, first the pre-AJAX call
<div class="field">
<label class="title" for="UserName">Email Address</label>
<span class="req"></span> <input id="UserName" name="UserName" placeHolder="" type="text" value="" />
</div>
Then the pagesource after AJAX call in Firefox
<div class="field">
<label for="UserName" class="title">Email Address</label>
<span class="req"></span> <input type="text" value="" placeholder="" name="UserName" id="UserName" class="error" /><label for="UserName" generated="true" class="error" style="display: inline;">Please enter a valid Email Address.</label>
</div>
And the same element when running htmlunit
<div class="field">
<label class="title" for="Email">
Email Address
</label>
<span class="req">
</span>
<input id="registerEmail" name="Email" placeholder="" type="text" value=""/>
</div>
Note that the validation element is not there. The way I am initiating the selenium server and the grid node is:
java -jar selenium-server-standalone-2.12.0.jar -role hub
java -jar selenium-server-standalone-2.12.0.jar -role node -hub http://localhost:4444/grid/register -port 4445 -browser browserName=htmlunit,maxInstances=5
The call to remote browser is:
DesiredCapabilities temp;
temp = DesiredCapabilities.HtmlUnit();
new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), temp)
I tried to provide as much as possible hope this helps, maybe I'm forgetting some setting or something. Please help.
Thank you.