我有一个页面,其中有多个表单,并且所有页面都具有相同类型的字段。我需要找到“检测日期”的所有值并将其与输入进行比较。 我的问题是如何从所有检测日期元素中获取日期时间?页面可能有5-6个检测日期值
我尝试了这个但是没有用
List<WebElement> list = driver.findElements(By.xpath("//td[contains(@class, 'CellHeaderRight') and text()='Detection Date']"));
System.out.println("Number of Date Fields " + list.size());
它给了我0
<form id="idFrmUpdatePlateNumber" onsubmit="UpdatePlateNumber(1); return false;"
action="" method="post" ,="" name="frmUpdatePlateNumber">
<table width="100%" cellspacing="0" cellpadding="3" border="1" style="background-color:#f9f9f9;">
<tbody>
<tr>
<tr>
<tr>
<td class="CellHeaderRight" width="1%" nowrap="nowrap">Detection Date:</td>
<td>1/20/2015 10:56:31 PM</td>
.....
</tr>
<form id="idFrmUpdatePlateNumber" onsubmit="UpdatePlateNumber(2); return false;" action="" method="post" ,="" name="frmUpdatePlateNumber">
<table width="100%" cellspacing="0" cellpadding="3" border="1" style="background-color:#f9f9f9;">
<tbody>
<tr>
<tr>
<tr>
<td class="CellHeaderRight" width="1%" nowrap="nowrap">Detection Date:</td>
<td>1/20/2015 10:55:02 PM</td>
这是额外的HTML
<div id="idDivSearchResults" class="" style="display: block;">
table width="100%" cellspacing="0" cellpadding="5" border="0">
<tbody>
<tr>
<td>
<div style="border-width:1px; border-style:inset; background- color:#d0d0d0; padding:10px;">
<table width="100%" cellspacing="0" cellpadding="5" border="0">
<tbody>
<tr>
<td>
<b>Event Details</b>
<form id="idFrmUpdatePlateNumber" onsubmit="UpdatePlateNumber(0); return false;" action="" method="post" ,="" name="frmUpdatePlateNumber">
<table width="100%" cellspacing="0" cellpadding="3" border="1" style="background-color:#f9f9f9;">
<tbody>
<tr>
<td class="CellHeaderRight" width="1%" nowrap="nowrap">Plate Number:</td>
<td>
</tr>
<tr>
<tr>
<td class="CellHeaderRight" width="1%" nowrap="nowrap">Detection Date:</td>
<td>1/20/2015 11:59:59 PM</td>
</tr>
答案 0 :(得分:1)
您提供的XPath表达式会将td
元素与Detection Date:
文本匹配,而您需要下一个td
元素。使用following-sibling
:
//td[contains(@class, 'CellHeaderRight') and .='Detection Date:']/following-sibling::td[1]
请注意:
之后还缺少Detection Date
。
您还可以检查以Detection Date
开头的文字:
//td[contains(@class, 'CellHeaderRight') and starts-with(., 'Detection Date')]/following-sibling::td[1]
此外,在搜索检测日期之前,您可能需要显式等待以显示表单:
WebDriverWait wait = new WebDriverWait(webDriver, 5);
wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("idFrmUpdatePlateNumber")));
// find dates
如果搜索结果在iframe
内,您需要先切换到:
driver.switchTo.frame("Frame_ID_or_Name");
// find dates
答案 1 :(得分:0)
如果你想获得<td>1/20/2015 10:55:02 PM</td>
之类的元素,如果它总是tr的第二个子元素,那么你可以使用xpath:
*//tr[td[text()="Detection Date:"]]/td[2]
这将找到包含带检测日期文本的td元素的tr元素,并获取该tr元素的第二个元素。
同样,这个website是一个非常有用的资源,用于测试xpath和css选择器。