Recently Selenium has launched Selenium 4 with so many new changes. Right now Selenium 4 is in beta version but soon it will be available for public use. In this post, I will show you how to Launch Firefox in Selenium using GeckoDriver which will run the test. If you are using Selenium 3 or 4 then in order to work with the Firefox browser you need to use separate a driver … [Read more...] about How to use Firefox in Selenium using geckodriver in Selenium 4
Quick list of Core Java topics for Selenium webdriver
Hi everyone welcomes back to Selenium tutorials. In this post, we will mainly deal with what Java topics for Selenium we need to cover. I frequently get these questions on my blog. Examples- 1- What concepts of java I need to learn to use selenium webdriver? 2- What is the list of topics I have to cover to understand Selenium better? 3- I know only core Java … [Read more...] about Quick list of Core Java topics for Selenium webdriver
What To Learn After Selenium – What Skills has to be added for QA Career
If you are someone who has learned Selenium and all other tools like maven, git, Github, Jenkins, etc then you must have questions or doubts in your mind that what should be next tool/area which you have to focus. In this post, I will guide you on what to learn after selenium and how to learn them as well. For those who don't want to read and want to watch the video, then I … [Read more...] about What To Learn After Selenium – What Skills has to be added for QA Career
How to Scroll into view in Selenium Webdriver
A few days back when I was automating my application I got one scenario where I had so many scroll bars into the single page itself and I had to scroll all bar one by one to get specific text which I had to validate. It was a little challenging to scroll for each element. In Selenium we can do this with scrollIntoView(true) which can scroll automatically till the specific … [Read more...] about How to Scroll into view in Selenium Webdriver
How To Read And Write Excel Files In Python Using Openpyxl
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