Description: If you want to learn testautomation handson, there is guided path to teach you everything you need to know to become a tester champ
software testing (348) automated testing (44) selenium testing (5) testing tutorials (2) testing best practices (1) learn testing (1) learn salesforce testing (1) learn outsystems testing (1)
Introduction In this tutorial I will explain how you can install puppeteer. In the follow up courses you will learn how to automate browsers via puppeteer In this example I use visual studio code and as a prerequisite npm is installed. at first we need to crate a package, in which the package name is the name of my folder= learnpuppeteer. fill in the fields as I described in the screenshot
Ever want to learn how easy it is to set up a selenium browser testing via AWS device farm via browser. You have to have an AWS account, setup AWS device farm, set up a maven project in eclipse, by downloading the amazon sdk + selenium. Here is how: Create a project in AWS device Farm Then copy the arn: and store it somewhere: you need this arn in your eclipse project later in the tutorial
Introduction Selenium has two methods to get elements from a webpage. Those two methods are findElement & findElements. We can use id, name, class name, tag name, and XPath as inputs to those two methods when retrieving elements. First, let’s see the difference between the two methods findElements Returns all the elements found on for the given parameter. Returns null if there are no elements found for the given parameter.