How to create xPath in Selenium | Become Master in xPath
What does a website consist of and how to create xpath Websites which you visit could be developed using various technology stack, different web server,…
Working with Checkbox in Selenium
Handle Check boxes with Selenium Working with checkbox is similar to handling radio buttons. In our previous chapter we learnt how to get the reference of…
Handling Radio Buttons in Selenium
Handling Radio Buttons We all must have interacted with radio buttons, be it in an application form or any social media registration page. Selenium treat…
Selenium | Extract All Links In A Webpage
Extracting Links from a Webpage It is quite often that we need to get all the links or links from a specific part in a…
Navigating Between Windows using Selenium
Windows Navigation Many a times, you may have noticed that on clicking any link or button on a website opens the target webpage/website in a…
Selenium WebDriver: Interacting with WebElements – Dropdown
Working with Dropdown Dropdown is a kind of WebElement which consists of multiple options. HTML tag “select” is used to define a dropdown. HTML structure…
Selenium WebDriver: Interacting with WebElements – Textbox
Interacting with WebElements (Textbox) In previous post, we learnt various techniques to identify locators(WebElements). Now we will see how to interact with these WebElements and…
Selenium WebDriver: Locators in Selenium
Every webpage or website comprises of several HTML and CSS elements, which constitute the DOM structure. These elements in selenium are known as WebElements and WebDriver
Selenium WebDriver Basics – What is Selenium?
Selenium Selenium is an API using which we can perform automated tests on the Application Under Test(AUT). Selenium is used to automate websites, but it…