Selenium 마우스 클릭 이벤트 구덩이 밟 기

7216 단어 구 덩이 를 밟다
탭 을 찾 은 후 클릭 하면 지연 시간 을 설정 해 야 합 니 다. 그렇지 않 으 면 실행 이 너무 빠 른 js 파일 을 불 러 올 수 없어 서 클릭 반응 이 없습니다.
처음에 나 는 요소 가 나 오 기 를 기다 리 면 된다 고 생각 했 는데, 결 과 는 계속 클릭 해서 반응 이 없 었 다.
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();

    }
}

좋은 웹페이지 즐겨찾기