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는 방법이 작동하지 않습니다 보시기 바랍니다 붙여 넣기. 이드와 cssselector와 함께 작동하게 만들었습니다. –