In Selenium Webdriver we do not have any feature which will allow us to perform parallel execution so we can take the help of TestNG which will help us to run parallel execution in selenium. This is one of the most frequently asked questions in interviews as well. Benefits of Running parallel execution in selenium It saves execution effort. We can cover a … [Read more...] about How to Perform Parallel Execution in Selenium Webdriver using TestNG
How to integrate Cucumber with Selenium webdriver
Welcome to all of you for another series “Cucumber tutorials”. In this post, we will discuss how to integrate cucumber with selenium webdriver. What is BDD- BDD stands for Behavior driven development- This mainly deals with the behavior of the application. In BDD we only focus on application behavior, all requirements will be in the plain text file and in pure English … [Read more...] about How to integrate Cucumber with Selenium webdriver
Simple way to pass parameters to AutoIT script for file upload
Hi, all today I am going to share small tricks for Autoit, Thanks to my friend Lajish Lakshmanan who gave me this tip. In this post, we will discuss how to pass parameters in Autoit script for Selenium code. Background While uploading file in Selenium Webdriver using AutoIT we have hard coded the complete path so we cannot reuse that script for another test, which is actually … [Read more...] about Simple way to pass parameters to AutoIT script for file upload
Custom library to solve Synchronization in Selenium Webdriver
Today in this post, I will show you how to handle Synchronization in Selenium Webdriver. I am 200% sure that you are also not happy with the wait provided by Selenium, which does not serve our purpose. Selenium has less number of sync method which actually makes your Selenium script unstable and most of the time Selenium scripts fails only for synchronization. Please check … [Read more...] about Custom library to solve Synchronization in Selenium Webdriver
Simple step to start Default Firefox Profile in Selenium
Welcome back to another post of Selenium Webdriver in this post I will show you how to start default Firefox profile in Selenium Webdriver. While working with Firefox in Selenium you have noticed that it starts the fresh profile every time so you will not get any cookies, form data and any plugin or add-on, which you have installed on your local browser. What is … [Read more...] about Simple step to start Default Firefox Profile in Selenium