Running WebDriver Test In Headless Browser Using PhantomJS GhostDriver

Earlier we have configured PhantomJS GhostDriver with eclipse In previous post to run Selenium WebDriver test In headless browser. Now we are all set to execute sample WebDriver test In eclipse using PhantomJS GhostDriver. I have created sample test as bellow which will be executed In headless browser. We will use DesiredCapabilities to set phantomjs.exe executable file’s path … Read more

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