Selenium Cheat sheet
If you are a Manual Tester /QA and aspiring to become a Automation Tester / Software Development Engineer in Test (SDET) and you are looking for a place where you can get all the command or basic commands through which you can accomplish your task then you are at the right place.
Here, we will be discussing the selenium commands that we normally use in our automation journey.
It can be categorized in the three categories
1. Driver commands
Driver commands are the ones that identify the browser and perform navigation in the browsers
Webdriver driver = new ChromeDriver();
System.SetPropery
2. Locators
Locators are the one that allows us to perform and identify the elements on the web page;only condition is the elements should be visible and accessible on the web page.
3. Actions
Actions are the actual operations the can be performed on the html elements or controls.
Comments
Post a Comment