我正在使用XPath/CSS和Selenium来定位网站上的元素。我想创建一个方法,在这个方法中,我遍历一个定位器列表(XPath/CSS),然后程序选择哪个有效。换句话说,它从定位器1开始-如果定位器存在,它将返回true并存在循环。否则,它将移动到列表中的下一个定位器。一旦用完所有CSS定位器,它就会转到XPath等等。
目前,我正在考虑如下实施:
public boolean iterate(WebDriver driver, By selectorType, String[] locator)
{
driver.get("URL");
for(int selectorListCounter = 0; selectorListCounter < locator.length; selectorListCounter++) {
try
{
driver.findElement(By.(selectorType)).sendText();
System.out.println("CSS Selector: " + CSS + " found");
return true;
} catch (Exception e)
{
System.out.println(CSS + " CSS Selector Not Present");
return false;
}
}
然后,我计划为每种定位器类型调用此方法(一次用于XPath,一次用于CSS等)
这是最好的方式吗?
我认为下面的解决方案会对你有效,我不认为有必要为每种类型的定位器循环一次findElement()
不关心使用什么机制定位元素,只要它是有效的机制
//Define as many locators as you like
private static final By cssLaunchIcon() {return By.css("div.myDemoItemActions i.launchIcon");}
private static final By cssLaunchIcon1() {return By.css("div.myDemoItemActions i.launchIcon.a");}
private static final By cssLaunchIcon2() {return By.css("div.myDemoItemActions i.launchIcon.li");}
private static final By xpathLauncIcon() {return By.xpath("//ul/li/a[text()='launch']");}
private static final By idLaunchIcon() {return By.id("launchIcon");}
//Initialise the non empty list of locators
List<By> locators= Arrays.asList(cssLaunchIcon(), xpathLauncIcon(), idLaunchIcon(), cssLaunchIcon1(), cssLaunchIcon2());
public booolean findElement(List<By> locators) {
Iterator<By> locs = locators().iterator();
boolean found = false;
//while iterator has another locator && no locator found yet
while(locs.hasNext && !found) {
WebElement el = locs.next();
try{
if(driver.findElement(el).isDisplayed) {
found = true
}
} catch(NoSuchElementException e) {
System.out.println("Could not find " + el)
}
return found;
}
事实上,我昨天这样做只是为了加快我的结果处理过程。而不是成功和失败,你有选择1和选择2。
此程序中每个元素的隐式等待时间为1秒。因此,while循环总共持续8秒(因为它每次生成两个数组)。这将通过将元素放入数组来检查元素是否存在,然后检查数组的大小,如果元素不存在,则数组将为空。但是,当其中一个条件失败时,意味着页面上存在一个元素。
然后在它的下面,我们设置布尔值来找出页面上存在的这些元素中的哪一个,并捕获不存在的元素的错误。
driver.manage().timeouts().implicitlyWait(1, TimeUnit.SECONDS);
int checkForElement=1;
success = false; failure = false;
while (driver.findElements(By.className("successMessage")).size()==0 && driver.findElements(By.className("errormessage")).size()==0 && checkForElement<=4 )
{
checkForElement+=1;
}
checkForElement=1;//reset variable
try
{
@SuppressWarnings("unused")//suppresses the warning so that the class is clean
WebElement successful = driver.findElement(By.className("successMessage"));//not used practically, but logically used to look for the presence of an element without waiting the normal implicit wait time I would have at 6 seconds
success = true;
}
catch(Exception e)
{
success = false;
}
try
{
@SuppressWarnings("unused")//suppresses the warning so that the class is clean
WebElement failing = driver.findElement(By.className("errormessage"));//not used practically, but logically used to look for the presence of an element without waiting the normal implicit wait time I would have at 6 seconds
failure = true;
}
catch(Exception e)
{
failure = false;
}
if(success)
{
//run success code
}
else if(failure)
{
//run failure code
}
问题内容: 我已经用BeautifulSoup做到了,但是有点麻烦,我想弄清楚是否可以直接用Selenium做到。 假设我有以下HTML,这些HTML在页面源中使用相同的元素但内容不同重复多次: 我需要建立一个字典,每个人的条目如下: 通过执行以下操作,我可以轻松地让Selenium生成每个顶级元素的内容列表: 但是,我无法遍历列表,因为上述方法无法将范围/源范围缩小到该元素的内容。 如果我尝试执
问题内容: 我是一个selenium菜鸟,一直在努力用python完成事情。我试图从此页面迭代所有用户评论(“ partial_entry”类)https://www.tripadvisor.com/Airline_Review-d8729164-Reviews- Cheap-Flights-or560-TAP- Portugal#REVIEWS 即使Im每次都在for循环中选择一个不同的元素,但
对于元素间的空格,IE9 及之前版本不会返回文本节点,而其他所有浏览器都会返回文本节点。这样,就导致了在使用childNodes 和firstChild 等属性时的行为不一致。为了弥补这一差异,而同时又保持DOM规范不变,Element Traversal 规范(www.w3.org/TR/ElementTraversal/)新定义了一组属性。 Element Traversal API 为DOM
问题内容: 我已经用BeautifulSoup做到了,但是有点麻烦,我想弄清楚是否可以直接用Selenium做到。 假设我有以下HTML,这些HTML在页面源中使用相同的元素但内容不同重复多次: 我需要建立一个字典,每个人的条目如下: 通过执行以下操作,我可以轻松地让Selenium生成每个顶级元素的内容列表: 但是,我无法遍历列表,因为上述方法不会将范围/源范围缩小到该元素的内容。 如果我尝试做
问题内容: 我正在遍历Python中的元素列表,对其进行一些操作,然后在满足特定条件的情况下将其删除。 我应该使用什么来代替?我曾问过类似的问题,但注意到将对所有元素执行部分,因此消除了使用过滤器的解决方案。 问题答案: 你始终可以遍历列表的副本,从而可以自由修改原始列表:
问题内容: 我创建了一种方法来解组xml(item.xml)文件。但是,如果有多个元素,如何遍历所有元素并使它们显示? 我的代码如下: 如果我的xml是 如何获取所有显示的值?谁能帮我? 问题答案: 我在大学的一些项目中使用过JAXB。据我所记得,您应该返回一个对象(例如),然后查询该对象以检索其中包含的元素。 因此,您的xml应该如下所示: 此时,您的 Java 代码将是: