- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
MobileElement followButton = (MobileElement) driver.findElement(By.xpath("//android.widget.ListView[@index='0']//android.widget.FrameLayout[@index='"+loopVal+"']//android.widget.LinearLayout[@index='0']//android.widget.FrameLayout[@index='2']//android.widget.TextView[@index='0']"));
if(driver.findElements(followButton).isEmpty()) {
//do something
}
在findElements
它给了我一个错误,上面写着
The method findElements(By) is not applicable for the arguments (MobileElement)
所以我尝试将这个方法重新组织为 try-catch
try {
MobileElement followButton = (MobileElement) driver.findElement(By.xpath("//android.widget.ListView[@index='0']//android.widget.FrameLayout[@index='"+loopVal+"']//android.widget.LinearLayout[@index='0']//android.widget.FrameLayout[@index='2']//android.widget.TextView[@index='0']"));
} catch (org.openqa.selenium.NoSuchElementException e) {
//do something
}
但是现在新的错误是当我尝试 followButton
.getText();
时
String followOrNot = followButton.getText();
它给了我一个错误,上面写着
followButton cannot be resolved
基本上我想做的是找到 followButton
并运行 .getText()
但如果找不到 followButton
,则执行操作处理错误
有人可以帮忙吗?
最佳答案
你可以试试这个
List<AndroidElement> followButtons = driver.findElements(MobileBy.xpath("//android.widget.ListView[@index='0']//android.widget.FrameLayout[@index='"+loopVal+"']//android.widget.LinearLayout[@index='0']//android.widget.FrameLayout[@index='2']//android.widget.TextView[@index='0']"));
if(! followButtons.isEmpty()) {
System.out.println(followButtons.get(0).getText()); // print text
}
或
如果您有id
或类名
,您也可以使用下面的代码
List<MobileElement> elementsOne = (List<MobileElement>) driver.findElementsByAccessibilityId("SomeAccessibilityID");
List<MobileElement> elementsTwo = (List<MobileElement>) driver.findElementsByClassName("SomeClassName");
更多详细信息是here
关于java - findElements(By) 方法不适用于参数 (MobileElement),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59756139/
在driver.findElements()中,我们获得了另一个用于查找size()的函数,该函数在driver.findElement()中不可用。 这是唯一的区别吗? 最佳答案 driver.fi
当我尝试使用 webDriver 搜索一个或多个元素时,它没有返回任何内容。操作系统:Ubuntu 14.04,框架:Intellij Idea,语言:Java。 我有这些声明: WebDriver
还是它们只影响 findElement?例如,如果我想测试页面上不存在的元素,我是要使用findElement(由于隐式等待会很慢),还是可以使用findElements(..).size() ==
我正在使用 WebElement.findElement(By.cssSelector('')).click(); 在页面上查找元素,但它返回了 “无法定位元素” ,但是当我使用 WebDriver.
当我执行下面的代码时,代码工作得很好 WebElement element = driver.findElement(By.xpath("String1")); element.findElement
我正在使用 Protractor(Angular JS 的 webdriver 包装器),尽管我可以无限期地将 findElement 链接到单个 WebElement 实例,但当我尝试时会收到错误使
为什么要使用@FindBy和driver.findElement()? @FindBy迫使我将所有变量都移到类级别(大多数变量只需要在方法级别时使用)。似乎唯一能买到我的东西是我可以调用PageFac
无法在 Google map 中找到元素。 ::::: :::::: :::::: 我尝试使用此方法,但没有成功选择具有“gm-
我正在 Selenium Webdriver 中编写代码。我必须点击 HTML 代码为 的按钮 我的代码就像下面一样简单 driver.findElement(By.id("aui_3_4_0_1_
MobileElement followButton = (MobileElement) driver.findElement(By.xpath("//android.widget.ListView[
我完全陷入困境,不知道为什么我会得到这样的输出。这是相关的片段。 WebElement section = driver.findElement(By.xpath("//div[contains(@c
我需要一些帮助来尝试从以下网站获取本圣经章节的每一节经文作为数据框中的一行字符串。 我正在努力寻找正确的元素/不知道如何将 findElements() 与浏览器中的检查元素结合使用。任何关于如何对其
我需要获取所有文章标题的列表。但由于某种原因,Selenium 返回了文章 WebElement 的同一实例 3 次。网页 HTML 如下所示:
列表中的第一个很容易,因为您可以使用查找元素。我找到该元素并需要从前面和后面的 div 中获取信息。对于列表中的“n”元素,用于移动/向后到其他关联 div 的 xPath 语法是什么? 我尝试了各种
我正在尝试在我的框架中创建一个显式等待方法来处理用户的输入。该方法应该处理所有类型的搜索:id、xpath 和 css。但是,当我尝试测试此方法时,错误返回一个奇怪的错误 显式等待方法 public
我正在尝试查找从 PCA Predict API 生成的元素(可在此链接中找到)。 http://www.pcapredict.com/en-gb/address-capture-software/
来自维基文档 https://github.com/SeleniumHQ/selenium/wiki/PageFactory我发现,如果脚本使用 eg. 找到了一些元素@FindBy(id = "q"
代码 1 resultsBoard.findElements(By.css(mySelector)).then(function(elements) { elements.forEach(func
我这里的代码行是: List element = driver.findElements(By.xpath("*")); for(int i=0; i element = driver.findEle
在使用 Selenium 网络测试时,有几种方法可以识别 WebElements。 根据我的经验,我使用过以下选择器: 类名 - By.className() CSS 选择器 - By.cssSele
我是一名优秀的程序员,十分优秀!