我有一个HTML href链接
<a class="btn btn-icon-text btn-secondary" data-toggle="modal" data-target="#recordSharingDownloadModal" href="/person/mL7CD8tR59g2Cy2/health-record/sharing/media/clinical-summary/%7B7c-06-74-be-dc-67-47-5d-be-92-4c-58-5a-fd-1b-8f%7D/download-options/" title="Download Document">Download</a>
使用Selenium我需要点击链接。目前,我正在使用以下代码 -
driver.findElement(By.xpath("//a[contains(@href='/person/mL7CD8tR59g2Cy2/health-record/sharing/media/clinical-summary/%7B7c-06-74-be-dc-67-47-5d-be-92-4c-58-5a-fd-1b-8f%7D/download-options/')]")).click();
但它正在抛出错误
“显示java.lang.NullPointerException”
我还尝试使用CssSelector单击按钮但仍然出现相同的错误。我需要单击临床摘要部分下的“下载”按钮,但有多个部分具有相同的按钮名称。只有HREF是唯一的。
有人可以帮助我吗?
这段代码:
package LaunchIQHealth;
import java.io.File;
import java.io.IOException;
import org.apache.commons.io.FileUtils;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.TakesScreenshot;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.support.ui.*;
public class AutomateIQHealth
{
public static void main(String[] args) throws IOException, InterruptedException
{
System.setProperty("webdriver.chrome.driver", "C:\\Users\\abc\\Desktop\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
WebDriverWait wait = new WebDriverWait(driver, 20);
driver.get("url");
((JavascriptExecutor)driver).executeScript("scroll(0,400)").equals("Clinical Summaries");
wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//*[contains(text(), 'Download")));
driver.findElements(By.xpath("//a[@href='/person/mL7CD8tR59g2Cy2/health-record/sharing/media/clinical-summary/%7B7c-06-74-be-dc-67-47-5d-be-92-4c-58-5a-fd-1b-8f%7D/download-options/']")).get(0).click();
}
}
答案 0 :(得分:0)
如果我认为您当前的粘贴代码是准确的代码,那么您将无法做到:
driver.findElement(By.xpath("//a[contains(@href='/person/mL7CD8tR59g2Cy2/health-record/sharing/media/clinical-summary/%7B7c-06-74-be-dc-67-47-5d-be-92-4c-58-5a-fd-1b-8f%7D/download-options/')]")).click();
或
driver.findElements(By.xpath("//a[@href='/person/mL7CD8tR59g2Cy2/health-record/sharing/media/clinical-summary/%7B7c-06-74-be-dc-67-47-5d-be-92-4c-58-5a-fd-1b-8f%7D/download-options/']")).get(0).click();
原因是,chromedriver
很高兴为您打开Chrome Browser
,但是您已根据documentation <尝试executeScript("scroll(0,400)").equals("Clinical Summaries");
但 strong> JavascriptExecutor
, Interface
以及相关方法 executeScript
和 {{1} } 无法调用executeAsyncScript
方法。
答案 1 :(得分:0)
您是否尝试过anchor
id
并使用findElement(By.id(IDTag))
?
我在元素上使用的替代方法是sendKeys(ENTER)
。
其中一种通常有效。
答案 2 :(得分:-1)
怎么样,
WebElement element = driver.findElement(By.xpath("//*[@data-target='#recordSharingDownloadModal']")
System.out.println(element)
element.click();