Waiting after web page interactions
March 16, 2012
Tweet
Having the correct wait logic in your tests goes a long way in making your tests robust and fast. This post describes the common wait mechanisms in WebDriver.
Posted by Rahul Poonekar in : Selenium , 21 commentsCommon Assertions using WebDriver
September 23, 2011
Tweet
The common validations described here are against page title, does text exist, does element exist and values returned by javascript calls.
Posted by Rahul Poonekar in : Selenium , 8 commentsInteracting with html page elements using WebDriver
September 19, 2011
Tweet
Here we see how to make keyboard and mouse calls. Some examples show how to set form fields, click and drag and drop page elements.
Posted by Rahul Poonekar in : Selenium , 9 commentsLocating page elements using WebDriver
August 31, 2011
Tweet
Locators have changed with Selenium 2 with the WebDriver API. Here are code examples of how to locate page elements with WebDriver.
Posted by Rahul Poonekar in : Selenium , 28 commentsGetting started with Selenium 2 and WebDriver
August 29, 2011
Tweet
Steps to install/ set-up Selenium 2 in your project and code examples of instantiating WebDriver for Firefox, Chrome and Internet Explorer.
Posted by Rahul Poonekar in : Selenium , 17 commentsSelenium 2 Tutorial and User Guide with examples
Tweet
This User Guide describes how to install and use Selenium 2 for browser test automation. The Web Driver code examples help newbies who are looking for Selenium tutorials as well.
Posted by Rahul Poonekar in : Selenium , 14 commentsA simple Selenium 2 example
March 1, 2011
Tweet
This demonstrates downloading and setting up Selenium 2 project and writing a simple java class that should get you started using Selenium 2 APIs.
Posted by Rahul Poonekar in : Selenium , 21 commentsSelenium Server 1.x support for Firefox 4
February 20, 2011
Tweet
Here are steps to test browser support using Selenium server in interactive mode and then patch Selenium Server 1.x to make it work with Firefox 4.
Posted by Rahul Poonekar in : Selenium , 5 commentsWhat is new in Selenium 2
February 19, 2011
Tweet
Selenium 2 has better browser control, a more expressive API, mobile support and can interact with the OS … all good reasons to upgrade.
Posted by Rahul Poonekar in : Selenium , 4 commentsMaking Selenium commands using XPaths faster in Internet Explorer
February 11, 2011
Tweet
Selenium commands using XPath, especially in multiwindow mode, is really slow. But, we can make it faster by adding a user extension that uses the JavaScript-XPath library.
Posted by Rahul Poonekar in : Selenium , 4 comments