Selenium 마우스 클릭 이벤트 구덩이 밟 기
7216 단어 구 덩이 를 밟다
처음에 나 는 요소 가 나 오 기 를 기다 리 면 된다 고 생각 했 는데, 결 과 는 계속 클릭 해서 반응 이 없 었 다.
public class SelTest {
public static void main(String[] args) throws InterruptedException, IOException {
System.setProperty("webdriver.edge.driver", "D:/ /msedgedriver.exe");
WebDriver driver = new EdgeDriver();
driver.get("http://app.xunjietupian.com/");
//
driver.findElement(By.xpath("/html/body/div/div/section[2]/div/div/a/li")).click();
// ,
WebDriverWait wait = new WebDriverWait(driver, 10, 1);
WebElement elem = wait.until(new ExpectedCondition<WebElement>() {
@NullableDecl
public WebElement apply(@NullableDecl WebDriver webDriver) {
assert webDriver != null;
return webDriver.findElement(By.xpath("//*[@id='app']/div[1]/div[3]/div/section[2]/div[2]"));
}
});
System.out.println("elem.getText() = " + elem.getText());
//Actions actions = new Actions(driver);
Thread.sleep(2000);
//actions.click(elem).perform();
elem.click();
Thread.sleep(2000);
Runtime.getRuntime().exec("src/main/resources/uploadPic.exe");
Thread.sleep(10000);
driver.quit();
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
롱 타 입 16 비트 이상 의 정밀도 문 제 를 해결 하 는 두 가지 방법첫 번 째: 일부 필드, id 또는 날짜 등 을 정확하게 지정 해 야 합 니 다. 클래스 LongJSonSerializer 를 추가 합 니 다. 코드 는 다음 과 같 습 니 다. 1 2 3 4 5 6 7 8 9 10...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.