我想打開該網站www.flock.co並在文本字段中輸入一個電子郵件。但該程序只打開該網站,並沒有輸入該字段中的電子郵件。無法在文本框中輸入字符串。它只是打開瀏覽器
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class FindByClassName {
public static void main(String[] args) throws Exception {
System.setProperty("webdriver.gecko.driver", "C:\\Automation\\geckodriver-v0.15.0-win64\\geckodriver.exe");
WebDriver driver = new FirefoxDriver();
driver.manage().window().maximize();
driver.get("https://flock.co/");
driver.findElement(By.className("_g-s-wrap")).sendKeys("[email protected]");
}
}
不幸的是我的代碼不與XPath的方法工作。使它與id和cssselector一起工作 –