Skip to content

Instantly share code, notes, and snippets.

@pragmatictesters
Created May 26, 2022 07:54
Show Gist options
  • Save pragmatictesters/4de556c0966eb25d4ad192c0aee57e6c to your computer and use it in GitHub Desktop.
Save pragmatictesters/4de556c0966eb25d4ad192c0aee57e6c to your computer and use it in GitHub Desktop.
Selenium Training - Sample code to verify the environment
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