Friday 24 April 2015

Script for "ActiTIME" application. Operation: Login into actitime application and logout.

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;


public class WebDriverDemo {

public static void main(String[] args) throws InterruptedException {

WebDriver driver=new FirefoxDriver();
driver.get("http://hunter/login.do");
driver.findElement(By.name("username")).sendKeys("admin");
driver.findElement(By.name("pwd")).sendKeys("manager");

driver.findElement(By.id("loginButton")).click();

Thread.sleep(4000);

driver.findElement(By.className("logout")).click();

driver.close();

System.out.println("PASS!");

}

}

No comments:

Post a Comment