Untitled

 avatar
unknown
plain_text
3 years ago
1.2 kB
5
Indexable

package webdriver;

import java.util.List;
import java.util.concurrent.TimeUnit;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.Assert;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;

public class Topic_04_Xpath_01 {
	// declare1 var to be for Selenium driver
	WebDriver driver;
	String projectPath = System.getProperty("user.dir");


	@BeforeClass
	public void beforeClass() {
		System.setProperty("webdriver.gecko.driver", projectPath + "\\browserDrivers\\geckodriver.exe");
		
		// open browser
		driver = new FirefoxDriver();

		// Set timeout to find element
		driver.manage().timeouts().implicitlyWait(5,TimeUnit.SECONDS);

		// Mo application len AUT/SUT
		driver.get("http://live.techpanda.org/index.php/customer/account/login/");
	}

	@Test
	public void TC_01_Find_Element() {
		// single element
		driver.findElement(By.xpath("//div[@class='footer']//a[@title='My Account']")).click();
		
	}
	

	@AfterClass
	public void afterClass() {
		driver.quit();
	}
}
Editor is loading...