- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在自动化一个流程,其中我应该能够登录网站并自动下载和重命名文件。
我附上代码。我只是无法下载和重命名该文件,其余所有功能都工作正常。我认为提供 xpath 存在一些问题。
package package1;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.HashMap;
import java.util.List;
import org.apache.commons.io.FileUtils;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.remote.CapabilityType;
import org.openqa.selenium.remote.DesiredCapabilities;
public class Test_new {
public static WebDriver setup() throws Exception
{
String downloadFilepath = "E:\\HCA_Automation\\Files";
System.out.println(downloadFilepath);
HashMap<String, Object> chromePrefs = new HashMap<String, Object>();
chromePrefs.put("profile.default_content_settings.popups", 0);
chromePrefs.put("download.default_directory", downloadFilepath);
ChromeOptions options = new ChromeOptions();
options.setExperimentalOption("prefs", chromePrefs);
DesiredCapabilities cap = DesiredCapabilities.chrome();
cap.setCapability(CapabilityType.ACCEPT_SSL_CERTS, true);
cap.setCapability(ChromeOptions.CAPABILITY, options);
//WebDriver driver = new ChromeDriver(cap);
WebDriver wd;
//String exepath=System.getProperty("user.dir") + "//chromedriver.exe";
System.setProperty("webdriver.chrome.driver",
"C:\\Users\\sh370472\\Downloads\\chromedriver_win32 (1)\\chromedriver.exe");
return (wd= new ChromeDriver(cap));
}
public static void login(WebDriver wd) throws Throwable
{
wd.manage().window().maximize();
wd.get("https://www.shipper-ml.com");
wd.findElement(By.id("inpUserId")).sendKeys("XXXXXXXX");
wd.findElement(By.id("inpPassword")).sendKeys("XXXXXXXXXXXX");
wd.findElement(By.id("btnLogonLabel")).click();
Thread.sleep(1000);
}
public static void execute(WebDriver wd) throws Throwable{
wd.get("https://www.shipper-ml.com/viewReports.do");
Thread.sleep(2000);
List<WebElement> list= wd.findElements(By.xpath("//table[@class='lcb']/tbody/tr/td/table[@class='ibody']/tbody/tr/td[contains(translate(text(),'0123456789'),'06')]/parent::tr/td[7]/a"));
int i = 0;
FileUtils.cleanDirectory(new File("E:\\HCA_Automation\\Files"));
for (WebElement element:list)
{
i++;
element.click();
Thread.sleep(1000);
System.out.println((element.findElement(By.xpath("(//table[@class='lcb']/tbody/tr/td/table[@class='ibody']/tbody/tr/td[contains(translate(text(), '0123456789'),'06')]/parent::tr/td[3])["+i+"]")).getText()).substring(0,2));
String report_type = (element.findElement(By.xpath("(//table[@class='lcb']/tbody/tr/td/table[@class='ibody']/tbody/tr/td[contains(translate(text(), '0123456789'),'06')]/parent::tr/td[3])["+i+"]")).getText()).substring(0,2);
}
}
public static void tearDown(WebDriver wd) throws Throwable{
wd.quit();
}
public static void main(String[] args) throws Throwable
{
WebDriver wd = setup();
login(wd);
execute(wd);
tearDown(wd);
Thread.sleep(1000);
FileUtils.copyDirectory(new File("C:\\Users\\nea558\\Desktop\\New_Folder\\Files\\TAS\\"), new File( "\\\\zneugo1p17ecn02.bp1.ad.bp.com\\DataTransfer\\ETAP\\DropBoxes\\CATS\\01_Inbox"));
//FileUtils.copyDirectory(new File("C:\\Users\\nea558\\Desktop\\New_Folder\\Files\\PAS\\"), new File("\\\\bp1xeuap2433\\aamon\\scheduler\\Handoffs\\paa\\itd\\process"));
}
}
HTML:
<div id="lc_ctrl258037362">
<table id="ctrl258037362" cellspacing="0" width="845px" class="lc_nf" border="0" cellpadding="0">
<tbody>
<tr>
<td>
<table cellspacing="0" width="100%" class="lcb" border="0" cellpadding="0">
<tbody>
<tr>
<td>
<table cellspacing="1" width="100%" class="ibody" border="0" cellpadding="0">
<colgroup>
<col>
<col>
<col>
<col>
<col>
<col>
<col>
<col>
</colgroup>
<tbody>
<tr class="header">
<td>Report ID</td>
<td>Version No.</td>
<td>Report Type</td>
<td>Contract</td>
<td>Date Created</td>
<td>Status</td>
<td align="center">Excel</td>
<td align="center">XML</td>
</tr>
<tr onmouseover="high(this);" class="even" onmouseout="low(this);" style="">
<td class="cl">19062006</td>
<td class="cl">V1</td>
<td class="cl">PAS ITD/EOD EX1 Allocation Statement</td>
<td class="cl">ETAP</td>
<td class="cl">21/06/2019 08:56</td>
<td class="cl">Published</td>
<td align="center" class="cl">
<a href="/viewReports.do?ctrl=reportListForDownload&action=DownloadReport&param=0" target="_blank">
<img vspace="0" align="absmiddle" border="0" src="images/buttons/excel.gif"></a></td>
<td align="center" class="cl"><a href="/viewReports.do?ctrl=reportListForDownload&action=DownloadXml&param=0" target="_blank"><img
vspace="0" align="absmiddle" border="0" src="images/buttons/document.gif"></a></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
最佳答案
找到下载链接的 XPath 如下:
//table/descendant-or-self::tr[td[3][text()='PAS ITD/EOD EX1 Allocation Statement']]/td[7]/a
这会找到 <table>
包含 <tr>
的元素具有 <td>
的元素值为 PAS ITD/EOD EX1 Allocation Statement
的元素然后将您路由至<td>
包含下载链接的同一行中的元素。
要将其放入可以调整报告类型值的代码中,您可以使用:
String reportTypeValue = "PAS ITD/EOD EX1 Allocation Statement"
driver.findElement(By.xpath("//table/descendant-or-self::tr[td[3][text()='" + reportTypeValue + "']]/td[7]/a")
*编辑*
根据您的评论,您变得更加复杂,我现在有:
//table/descendant-or-self::tr[td[1][substring(text(), string-length(text()) - string-length('06') + 1)]][td[3][text()='PAS ITD/EOD EX1 Allocation Statement']]/td[7]/a
这将找到 <table>
包含 <tr>
的元素具有 <td>
的元素值为 PAS ITD/EOD EX1 Allocation Statement
的元素和一个 <td>
以值 06
结尾的元素。然后它会将您路由到 <td>
包含下载链接的同一行中的元素。
XPath 1.0 不支持结尾,因此这个 block :
substring(text(), string-length(text()) - string-length('06') + 1)]
这会计算出文本节点的长度和您正在搜索的字符串的长度,并使用子字符串功能来确保最后 x 个字符匹配。
要将其放入新的代码块中,您可以使用它来调整报告类型值和报告 ID,您可以执行以下操作:
String reportID = "06"
String reportTypeValue = "PAS ITD/EOD EX1 Allocation Statement"
driver.findElement(By.xpath("//table/descendant-or-self::tr[td[1][substring(text(), string-length(text()) - string-length('" + reportID + "') + 1)]][td[3][text()='" + reportTypeValue + "']]/td[7]/a")
关于java - 如何使用 selenium webdriver 从第三方网站下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56702043/
我想在 Watir webdriver 中使用 selenium webdriver Actions。这可能吗? 也可以在 watir webdriver 中使用 java 代码。请帮忙。 我浏览了很
我正在使用 watir-webdriver 浏览我的网站并在不同的浏览器中抓取屏幕截图。 有时在 IE 中截取的屏幕截图大小合适,但颜色完全是黑色。同时运行的 Firefox 测试看起来很好。 bro
我已经编写了 driver.findElement(By.id("kfiDocumentLink")).click(); 用于单击“KFI 文档”按钮的代码。 请找到HTML代码。 Download
我有一个包含以下内容的 html 页面: This is Login page. Please click below link
我想获得页面加载异常,但仍然没有结果。 我使用implicitlyWait 设置计时器以抛出异常。 WebDriver driver = new FirefoxDriver(); driver.man
我正在使用具有 IE 特定应用程序的 Selenium Webdriver。我知道我们可以截取执行的截图。同样,是否有任何选项可以将 selenium 执行记录为视频? 最佳答案 WebDriver
Selenium WebDriver 如何克服同源策略? Selenium RC 中存在同源策略问题 最佳答案 First of all “Same Origin Policy” is introdu
我将如何从输入文件中提取文本?我尝试使用 XPath/CSSSelector 但我得到一个空文本,因为它是一个输入字段。 这是我的 html 代码: 结果:195 行中的 1 到 50
如何使用 WebDriver 自动验证码? 是否有其他方法可以使用 Webdriver 自动执行验证码? 最佳答案 您只能使用“alt”属性中的显示验证码值来自动化验证码。 在 WebElement
最近我开始学习 WebDriver,因为我工作的客户计划使用 WebDriver 来自动化 Web 应用程序。 我怀疑 WebDriver 如何在网页上定位其 ID 动态变化的元素(比如每次登录应用程
我发现 watir-webdriver 在一个非常大的页面上通过正则表达式定位元素非常慢,至少在 FF 8.0.1 中对我来说是这样。航类搜索结果页面示例(包含大约 50 个搜索结果,每个都是 htm
我有一个动态更改其文本的字段。我需要一种方法来等待文本被更改。我不知道会出现什么文本,但我知道当前那里有什么文本。所以我想等待它在元素中消失。有办法吗? 最佳答案 你可以试试ExpectedCondi
自从我使用 Firefox 升级到 3.0 beta 后,我就有了这个异常(exception)。 Exception in thread "main" java.lang.IllegalStateE
任何人都可以帮助我使用 Selenium webdriver 截取整页屏幕截图。我正在使用 c#/Nunit。我正在使用的当前方法不是完整的浏览器页面。 我正在使用下面的代码截取屏幕截图。 publi
我通过 WebDriver (Chrome) 从网页下载图像 // STEP 1 $driver->get($link); // STEP 2 $els=$driver->findElements(W
Selenium WebDriver 的默认隐式等待值是什么? selenium 文档说它是“0”,但是当我在一个全新的项目上调用 .findElement 时,DOM 上不存在元素,它似乎在一段时间
我正在使用 Webdriver 测试 Web 应用程序,大致如下所述。当测试通过时,一切都很好。但是,当其中一个测试失败时,我注意到以下 2 个问题。 a) 如果一个测试失败,则套件中的其余测试将超时
我正在使用 Selenium WebDriver 并遇到问题。 在 UI 中,WebDriver 可以看到元素,但无法执行任何操作,例如单击、键入、选择等。元素由 selenium 找到并作为 web
我在 Java 中使用 Web 驱动程序处理 UntrustedSSLcertificates 时陷入困境。 我创建了 Firefox 配置文件,如: FirefoxProfile profile =
选择的编程语言是 Java。我已经用 Java 编写了一个方法,我将 WebDriver 作为参数传递给它... public boolean myMethod(WebDriver webDriver
我是一名优秀的程序员,十分优秀!