使用 Selenium WebDriver,我试图通过从 Excel 文件中读取的字符串来选择网页上的下拉菜单元素:
Xls_Reader data = new Xls_Reader("src//com//testexcel//data//data3.xlsx");
String values = data.getCellData("DropList", "Index_Value", 2);
String selections[] = values.split(",");
它们采用这种形式:建筑、工程、法律等。
我尝试选择的每个元素如下所示:
<div class="ui-dropdownchecklist-item ui-state-default" style="white-space: nowrap;">
<input id="ddcl-selInd-i3" class="active" type="checkbox" tabindex="0" index="3" value="11">
<label class="ui-dropdownchecklist-text" for="ddcl-selInd-i3" style="cursor: default;">Construction</label>
</div>
<div class="ui-dropdownchecklist-item ui-state-default" style="white-space: nowrap;">
<input id="ddcl-selInd-i5" class="active" type="checkbox" tabindex="0" index="5" value="03">
<label class="ui-dropdownchecklist-text" for="ddcl-selInd-i5" style="cursor: default;">Engineering</label>
</div>
这是代码:
package com.selftechy.parameterization;
import java.util.ArrayList;
import java.util.List;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class JobServe {
static WebDriver driver = new FirefoxDriver();
public static void main(String[] args) throws InterruptedException {
driver.get("https://www.jobserve.com/gb/en/Candidate/Home.aspx");
driver.findElement(By.xpath(".//*[@id='ddcl-selInd']/span")).click();
readExcelWords();
public static void readExcelWords() {
Xls_Reader data = new Xls_Reader("src//com//testexcel//data//data3.xlsx");
String values = data.getCellData("DropList", "Index_Value", 2);
String selections[] = values.split(",");
//help
List<WebElement> iList = driver.findElements(By.xpath("//*[@id='ddcl-selInd-ddw']"));
for (int i=0; i<selections.length; i++) {
driver.findElement(By.xpath("//*[text()='" + selections[i] + "']")).click();
我知道 xpath 是错误的,并且可能是我使用数据类型的方式。我需要一种基于数组值进行 xpath 选择的方法。我对 Java 和 Selenium 比较陌生,希望能得到一些帮助。