Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Webdriver to test my web application. When I work with FireFoxDriver or ChromeDriver everything seems to be ok. When I work with HtmlUnitDriver though things start to go wrong.

Here is a sample code:

WebDriver driver = new HtmlUnitDriver();
driver.get("http://localhost:8099/");
WebElement loginButton = driver.findElement(By.xpath("//button[@type='button']"));
loginButton.click();

i'v looked at the driver.getPageSource result, and the source code presented there is very partial.

it doesnt show me all the elements. it is the same a clicking view source on the page. what i need from the driver is the entire source, like firebug or chrome inspector give me.

any ideas on how i can retrieve it?

my app was written with the GWT.

thanks a million

share|improve this question

2 Answers

Have you tried to enable JavaScript for HtmlUnitDriver?

share|improve this answer
yes i have. didnt work. – Eli Mar 9 '11 at 8:24

I believe that the HTMLUnitDriver emulates IE by default (link) and there are other questions related to clicking buttons with IE. Have you tried this?

// Press enter on the button
loginButton.sendKeys("\n"); 

Also, have you tried adding an ID to the element and using that to find the button?

share|improve this answer

protected by Community Nov 23 '11 at 1:46

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.