Locators

Create a basic automation script that completes the test requirements listed below

Test Requirements

Perform the actions below

If needed click the plus sign for help

Open https://www.qaautomation.rocks/

driver.get(“https://www.qaautomation.rocks”);

Maximize the window

driver.manage().window().maximize();

Click on the menu button using By.id

driver.findElement(By.id(“et-top-navigation”)).click();

Click on Automation Challenge by using By.linkText

driver.findElement(By.linkText(“Automation Challenge”)).click();

Click on Locators using By.cssSelector

driver.findElement(By.cssSelector(“li[id=\”menu-item-68\”]”)).click();

Close the WebDriver

driver.close();