In my recent projects, I have handled a web table and calendar multiple times and in this article, I will show you how you can handle the calendar in Selenium Webdriver using the table approach. I will use JQuery Date picker for example but you can take any example because the approach will remain the same. I will be using findElements methods to find all the dates and then … [Read more...] about How to handle calendar in Selenium Webdriver and web table
How to Handle Bootstrap Dropdown in Selenium WebDriver
Have u ever heard about handle Bootstrap dropdown in Selenium? If no, then today you will learn 2 new things today. First one – What is bootstrap dropdown The second one- How to Select values from the bootstrap dropdown. We already have discussed how to work with traditional dropdowns and we have also explored multiple ways to handle the same but today we … [Read more...] about How to Handle Bootstrap Dropdown in Selenium WebDriver
Handle Multiple Windows in Selenium Webdriver in Simple ways
We can handle multiple windows in selenium webdriver using Switch To methods which will allow us to switch control from one window to another window. If you are working with web applications then you must have faced this scenario where you have to deal with multiple windows. If you have to switch between tabs then also you have to use the same approach. Using the switch To … [Read more...] about Handle Multiple Windows in Selenium Webdriver in Simple ways
How To Read PDF Files In Python Using PyPDF2 Library
Reading and Writing to PDF files in Python is quite easy, we have different libraries or packages in Python which can help us to achieve our task. In this article, I will show you how to read PDF files in Python using PyPDF2 package. In case you are new to automation then do check our Selenium tutorial which covers everything from basic till advance. Official Link for … [Read more...] about How To Read PDF Files In Python Using PyPDF2 Library
How to Capture Tooltip in Selenium Webdriver
This article will help you to understand How to Capture Tooltip in Selenium Webdriver and how we can verify the same in our automated test. Tooltip sometime is also known as Help text. When we use mouse hover on some element or click on some element then this tooltip comes. Here is a quick example of help text or tooltip. Example- Example of Gmail, when we … [Read more...] about How to Capture Tooltip in Selenium Webdriver