Reading and writing to excel files in Test Automation is very common and thanks to python which has a wide variety of libraries which allow us to do the same. These are a few of the libraries which you can use like openpyxl, pandas,xlsxwriter,pyxlsb,xlrd,xlwt, etc. In this article, I will guide you to read and write excel files in python using openpyxl. List of libraries … [Read more...] about How To Read And Write Excel Files In Python Using Openpyxl
How to handle calendar in Selenium Webdriver and web table
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