Created
May 26, 2022 07:54
-
-
Save pragmatictesters/4de556c0966eb25d4ad192c0aee57e6c to your computer and use it in GitHub Desktop.
Selenium Training - Sample code to verify the environment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.pragmatic.selenium; | |
import io.github.bonigarcia.wdm.WebDriverManager; | |
import org.openqa.selenium.By; | |
import org.openqa.selenium.WebDriver; | |
import org.openqa.selenium.chrome.ChromeDriver; | |
import org.testng.annotations.Test; | |
public class HelloSelenium { | |
@Test | |
public void testHelloSelenium () { | |
WebDriverManager.chromedriver().setup(); //Setup the web browser driver | |
WebDriver webDriver = new ChromeDriver(); //Create and launch a browser instance | |
webDriver.get("http://hrm.pragmatictestlabs.com"); //Navigate to the given URL | |
//Provide login credentials and submit the form | |
webDriver.findElement(By.id("txtUsername")).sendKeys("Admin"); | |
webDriver.findElement(By.id("txtPassword")).sendKeys("Ptl@#321"); | |
webDriver.findElement(By.id("txtPassword")).submit(); | |
webDriver.close(); //Close the browser | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment