Configure PhantomJS GhostDriver With Eclipse To Run WebDriver Test

Earlier we learnt how to execute WebDriver test In headless browser(Browser not visible during test case execution) using HTMLUnit driver In THIS POST with practical example. Same thing we can do using PhantomJS GhostDriver. It Is WebKit which Is headless and scriptable with javascript API. You can read more about PhantomJS on THIS PAGE. Here … Read more

Executing Headless Browser Test In Different Browsers And Version In Selenium

We have learnt how to execute JavaScript In HtmlUnit driver test In previous post. I am also suggesting you to read how to create and run first HtmlUnit driver test In THIS POST where I have described advantages of HtmlUnit driver against all other driver Instances. One of them Is we can choose the browser … Read more

Executing JavaScript In HtmlUnit Driver For Selenium WebDriver Test

Now all of you are well aware about HtmlUnit Driver as we have created and executed example headless browser test In THIS POST and also learnt how to hide useless warning message logs from console In previous post. One another thing you need to learn before using It Is how to execute JavaScript with HtmlUnit driver. … Read more

Hide “com.gargoylesoftware.htmlunit..” Warnings Logs From Console In WebDriver

In previous post we learnt how to run your selenium test In HTML Unit driver or headless browser. If you are using HtmlUnit Driver to run your test, Sometimes you will see lots of warnings as a log with text like “com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error“. This Is one kind of warning and we can eliminate It very easily. … Read more