Category: <span>Selenium RC</span>

Selenium Element locator and jQuery

In previous post we learned about Selenium IDE installation and its record and playback functionalities. When we were recording the test, we recorded script in table form with column; Command-Target-Value. Today we will try to understand these fields in detail and especially Target field as this is the most important component of web testing. We will actually identify the element to which we are going to access or test. First we will discuss about these fields: Command: As name explained itself, command is the action performed inside web browser during testing of application like click, clickAndWait, verify etc.. Target: Unique …

Basic Commands of Selenium RC

In previous post, we have discussed about locator and how to do scripting in Selenium IDE. If you have done through practice with IDE then I am sure you have been familiar with multiple selenium commands. Today will talk about some basic commands of selenium which we are going to use most frequently in our test framework other than click (), type () etc. I would recommend you to go through these commands thoroughly and try to practice them with IDE. 1: SelectFrame (locator): To learn this command we need to understand basics of HTML frame element first. Spend some …

First Step Towards Selenium

This is a common question being search from engineers, how to start selenium Test. I am sure some of you who are reading this blog may aware of fundamentals of Selenium but I am am going to start from very basic of Selenium Scripting. So all newcomers, get ready from very beginning of selenium test. In this post I will try to explain about Selenium and how to configure IDE for testing. First we will try to understand how Selenium works and interact with Web browser and web element. Actually Selenium is a java script library who interacts with element …