Selenium WebDriver – Disposable Selenium Grid Infrastructure Setup using Zalenium

Overview: We already have seen the challenges related to setting up the Selenium Grid infrastructure and how docker helps us in setting up a flexible/disposable/highly scalable selenium grid within few seconds in these articles below. Docker – Selenium Grid Setup Arquillian Cube – Managing Dockerized Selenium Grid In this article, We will see how Zalenium […]

Selenium WebDriver – How To Automate Hoverable Multilevel Dropdowns

Overview: One of the challenges test automation engineers face is – automating hoverable dropdowns as shown above in this article. Lets see how it can be automated using Selenium-WebDriver & Java. Hoverable Dropdown: Check this site. Move your mouse pointer on the element ‘Dropdown’. We can see the list of options of the multilevel ‘Dropdown’.

Selenium WebDriver – How To Automate Hoverable Multilevel DropdownsRead More »

Selenium WebDriver – How To Download And Set Up the Browser Drivers

Overview: One of the challenges we often face with test automation is – setting up the dependency to run the automated test scripts in all the remote virtual machines. For example, downloading & setting up the required version of browser drivers like chromedriver and adding them to the PATH. Doing this setup manually in every machine could

Selenium WebDriver – How To Download And Set Up the Browser DriversRead More »

Selenium WebDriver – How To Automate DatePicker

Overview: We already have seen automating below complex controls. JQuery Slider JQuery Sortable In this article, we will see how we could automate Calendar / DatePicker. Goal: To model a wrapper element for the DatePicker / Calendar. So that user can identify the datepicker field as any other field by the locator and select any given date

Selenium WebDriver – How To Automate DatePickerRead More »

Extending JMeter – Creating Custom Config Element – Property File Reader

JMeter is one of the best open source tools in the Test Automation Community. It comes with all the possible extensions to come up with our test scripts quickly. To make our life even more easier, It also lets us to come up with our own plugins by implementing few interfaces. In this article, I would

Extending JMeter – Creating Custom Config Element – Property File ReaderRead More »