Instantly share code, notes, and snippets.

Embed
What would you like to do?
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
public class TestFirefox {
public static void main(String[] args) {
WebDriver driver = new FirefoxDriver();
driver.get("http://www.agoda.com/centara-grand-at-central-plaza-ladprao-bangkok/hotel/bangkok-th.html");
WebElement bangkokText = driver.findElement(By.id("recommende-hotel-title"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment