Selenium WebDriver – Scriptless Page Object Design Pattern – Part 3

Overview: We had already covered 2 articles on the script-less page object design.  If you have not read them already, I would suggest you to read them first in the below order. Part 1 – Creating JSON based page objects which contains elements name – value pairs Part 2 – An Engine which parses the

Selenium WebDriver – Scriptless Page Object Design Pattern – Part 3Read More »

Selenium WebDriver – Scriptless Page Object Design Pattern – Part 2

Overview: This article is continuation of Part 1 which you can read here. In Part 1, We created JSON based page objects. Now lets see how to use them in our automation scripts. Page Object Parser: We need some script…..by this time, you might be like, Hold on! Script? Did you not say that Scriptless!!? Well.. Do

Selenium WebDriver – Scriptless Page Object Design Pattern – Part 2Read More »

Selenium WebDriver – Scriptless Page Object Design Pattern – Part 1

Overview: One of the applications I had automated had some unique functionality! The application helped the users to connect with different service providers! Users would be entering their preference in the application. The application would show list of service providers. Users could pick one from them and and fill out a specific form for the

Selenium WebDriver – Scriptless Page Object Design Pattern – Part 1Read More »

Selenium WebDriver – Factory Design Pattern Using Java 8 – Supplier

Overview: We had already covered about Factory Design Pattern in detail here. If you had not read that before, I would suggest you to check that article first. In this article, We are going to follow slightly a different approach using Java8 lambda expressions. Advantage of using lambda expressions is to write only fewer lines

Selenium WebDriver – Factory Design Pattern Using Java 8 – SupplierRead More »

Selenium WebDriver – Multi-Factor Authentication – SMS

Overview: Multi-factor authentication is a security system which requires more than one authentication method to verify the identity. If your ‘application under test’ has that feature, It might be little bit challenging for you to automate the complete end-to-end flow. TestAutomationGuru has already covered EMail Validation in case if your application includes EMail auth method. We are assuming

Selenium WebDriver – Multi-Factor Authentication – SMSRead More »

Selenium WebDriver – EMail Validation With Disposable EMail Addresses

Overview: Some of our automated tests might require email validation. Your application might send a Welcome email / User registration confirmation with a link to activate the profile / a token to login as part of Multi-factor Authentication…etc.  Your aim could be to check if the email has received or extract some information like auth

Selenium WebDriver – EMail Validation With Disposable EMail AddressesRead More »

JMeter / Selenium WebDriver – How To Trigger Automated Test Execution From Slack

Overview: We use Slack in our organization. You might also be using Slack for communicating information among the team members in your org. Slack is a great tool and it keeps everyone up to date and reduces unnecessary emails. Particularly automated status, build notifications etc which might flood your inbox. I have already shared an

JMeter / Selenium WebDriver – How To Trigger Automated Test Execution From SlackRead More »

Selenium WebDriver – How To Distribute Docker Images – Part 3

Overview: The modern cloud infrastructure, continuous integration & deployment processes etc have completely changed the way how applications are deployed in production nowadays. In order to release new features faster in Production, you need to reduce time we take in the each phase of the SDLC. As an automation lead/architect, It could be your responsibility to

Selenium WebDriver – How To Distribute Docker Images – Part 3Read More »

Selenium WebDriver – Design Patterns in Test Automation – Execute Around Method Pattern

Overview: As a software engineer, We all face some errors/exceptions while writing code! So what do we do when we face such a problem? If we are not sure, We google for solutions immediately. Don’t we? We google because we know that we would not be alone and someone would have already found the solution, for

Selenium WebDriver – Design Patterns in Test Automation – Execute Around Method PatternRead More »