Basic Selenium Navigation

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

    driver.findElement(By.xpath(“//*[@id=”et-top-navigation”]/span”)).click();

    Click on Automation Challenge

    driver.findElement(By.xpath(“//*[@id=”menu-item-56″]/a”)).click();

    Close the WebDriver

    driver.close();