Home » selenium-tutorial
Category Archives: selenium-tutorial
Scroll Up or Down in Selenium
Previous tutorial we have learned popup window handling and now we will learn Scroll Up or Down in Selenium What is Scrolling? Scrolling is nothing but moving the screen in horizontal and vertical direction. How to Scroll Up or Down in Selenium? If a particular element is not visible in current web application window because […]
Unexpected popup window handling using selenium
In this tutorial we will learn unexpected popup window handling using selenium. Also we will learn how to handle multiple window and its window id as per the requirement of automation script. How to resolve Unexpected popup window issue using Selenium? In a web application we sometimes come across an issue where we get unexpected […]
How to select date from DatePicker calender
Previous Topic, In this tutorial we will learn How to select date from DatePicker calender, date from date picker calendar step by step. How to select date from DatePicker calender using selenium? Date Picker in just a selection of date from calendar by selecting a number. On selecting the number (date), the date appears as […]
Password Encryption and Decryption in selenium
Previous Topic, In this tutorial we will learn password Encryption and Decryption techniques in selenium webdriver, its implementation and advantage in selenium script. Whats is Password Encryption and Decryption? Password Encryption and Decryption is selenium web driver is a technique in selenium , of encrypting the password or the user credentials so that it cannot […]
implicit,explicit And fluent wait in selenium
Wait in selenium Webdriver plays a crucial role in excution of Automation script,So in this tutorial we will discuss all the waits that can be provided by selenium for the smooth script execution. What is implicit, explicit & Fluent wait in selenium? As we know that the Web application are been developed by the developers […]
Double Click and Right Click using selenium
Previous Topic, In this tutorial we will learn how to Double Click and Right Click in selenium,selenium has its pre-defined classes because of which we perform operation like keyboard operations, mouse movements like drag and drop, mouse hover etc. How to perform Double click in selenium? Double click in selenium and Right Click is perforrmed […]
How to perform Drag and Drop Action in Selenium
Previous Topic, In the tutorial we will discuss the How to perform Drag and Drop Action in Selenium . The method that are used under Drag and Drop Action Class in Selenium Webdriver. How to perform Drag and Drop Action in Selenium? Drag and Drop Action is basically moving any element from one place and […]
Mouse Hover Action in Selenium
Previous Topic, Mouse Hover Action in Selenium: its basically an action which is performed when user takes the mouse cursor at any of the elements like menu, Tab etc, it automatically triggers an event and displays multiple sets of other options. How to perform Mouse Hover Action? Sometimes it happens that few of the element […]
Webdriver-Browser Commands
Webdriver browser commands are those commands in selenium webdriver from where we can perform any browser operation with defined set of method. The Method which is called using (.) from reference variable of browser object (can be any chrome,firefox, ie etc) have method with parameter and it return with particular return type or void(no return […]
Object identification through css in selenium
CSS: It stands for “Cascading Style Sheets”, the css is provided in Dom structure for styling, alignment,colouring etc. helps to style a web page. Due to its mechanism it provides a unique approach for object identification in test automation in selenium along with other tools. Advantage of using Css selector: Faster than xpath most browser […]