我正在使用 Java 中的 selenium 自动化一个网站。
<a id="pd-vote-button10359300" class="css-vote-button pds-vote-button"><span>Vote</span></a>
对于这个按钮,我需要在 Selenium 中自动单击。我正在遵循但不工作。
WebElement click = driver.findElement(By.id("pd-vote-button10359300"));JavascriptExecutor executor = (JavascriptExecutor) driver; executor.executeScript("arguments[0].click();", click);
您能提出问题是什么吗?
后
new WebDriverWait(driver, 20).until(ExpectedConditions.elementToBeClickable(By.xpath("//a[@class='css-vote-button pds-vote-button' and starts-with(@id, 'pd-vote-button')]/span[text()='Vote']"))).click();
www说
慕田峪7331174
精慕HU
眼眸繁星
相关分类