Certificate error handling in firefox

certificate error selenium

Certificate errors are error thrown on certain Websites.These errors tell us to accept new certifica ... Read More

Custom function to check if page has loaded or not-Version2

custom function page load selenium

We can have a modified version of the custom page load wait function in which we can run a while loo ... Read More

Pop-up handling in selenium

pop-up selenium

To check how many windows are open in the current set we create a set and check its size ``` Set w ... Read More

Finding all elements inside a box element in selenium

Elements in box element selenium

We can also choose the xpath of an outbox and extract all links inside that box like the below examp ... Read More

Taking screenshots using selenium

screenshots selenium

``` public static void takeScreenShot(){ // take screenshot File srcFile = ((TakesScreenshot)dr). ... Read More

Dragging and dropping elements using selenium

drag drop selenium

For dragging and dropping objects we make use of Actions class We make use of a function called dra ... 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

Selenium Documentation

Selenium Documentation

To add selenium documentation to any project go to its properties -> java build path and click clien ... Read More

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

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