Frames in selenium

frames selenium

Frame is like a window within a window on a webpage.Sometimes when we click a sigh in button a new b ... Read More

Type on character at a time into a input field

character typing selenium

If we want to type on character at a time into a input field instead of the entire string we use thi ... Read More

uploading files using selenium

file upload selenium

Uploading files is pretty easy in selenium.Simply go to page where we want to upload the files get t ... Read More

Implict wait and page load timeouts

page load timeout selenium

Implicitly wait for 20 sec for elements to be present on webpage. ``` driver.manage().timeouts().i ... Read More

Handling radio buttons in selenium

radio buttons selenium

Radio buttons usually belong to a group So all the radio buttons from the group have the same name A ... Read More

Custom function to check if page has loaded or not

custom function selenium page load

Below is a custom function to check whether a page has completely loaded or not. We can call this ... Read More

Adding documentation to selenium project

selenium documentation

Selinium documention is available at seleniumhq.org/downloads in the javadocs links. We can import ... Read More

Profiling in Chrome

chrome profiling selenium

Concept of profiling in chrome. In chrome profiling is related to user profile of gmail. If we ope ... Read More

Selenium and Jmeter integration

selenium jmeter

Let us make a simple selenium project in eclipse We add a class in it and add some junit test c ... Read More

Common problems faced with Selenium

common problems selenium

* Identification of objects,Ajax components-We have to use explicit wait for that and sometimes sepe ... Read More