Category: <span>Blog</span>

Selenium Commands That You must know.

Pay attention to following commands as these are going to play pivotal role in selenium. 1: SelectFrame (locator): To learn this command we need to understand basics of HTML frame element first. Spend some time to learn HTML Frames, if don’t know much about frame elements. While performing any action to any web element, we first select the frame where it resides then we perform any action to any element inside that frame. To access other elements coded in different frame, again we need to select that frame using this command and then we can access their elements. We use …

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 …