- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
WebElement username=driver.findElement(By.name("username"));
username.sendKeys("test");
WebElement password=driver.findElement(By.name("password"));
password.sendKeys("test");
WebElement loginBtn=driver.findElement(By.name("Login"));
loginBtn.click();
WebElement backBtn=driver.findElement(By.tagName("Button"));
backBtn.click();
当我使用上述测试用例时,用户名运行成功,但在输入密码时显示以下错误。
debug: Appium request initiated at /wd/hub/session/71ed55ce-c3ae-46d8-9ce7-67452
0992c0a/element/1/value
debug: Request received with params: {"id":"1","value":["test"]}
info: Pushing command to appium work queue: ["element:setText",{"elementId":"1",
"text":"test"}]
info: [BOOTSTRAP] [info] Got data from client: {"cmd":"action","action":"element
:setText","params":{"elementId":"1","text":"test"}}
info: [BOOTSTRAP] [info] Got command of type ACTION
info: [BOOTSTRAP] [debug] Got command action: setText
info: [BOOTSTRAP] [info] Returning result: {"value":true,"status":0}
info: Responding to client with success: {"status":0,"value":true,"sessionId":"7
1ed55ce-c3ae-46d8-9ce7-674520992c0a"}
POST /wd/hub/session/71ed55ce-c3ae-46d8-9ce7-674520992c0a/element/1/value 200 26
53ms - 89b
debug: Appium request initiated at /wd/hub/session/71ed55ce-c3ae-46d8-9ce7-67452
0992c0a/element
debug: Request received with params: {"using":"name","value":"password"}
info: Pushing command to appium work queue: ["find",{"strategy":"name","selector
":"password","context":"","multiple":false}]
info: [BOOTSTRAP] [info] Got data from client: {"cmd":"action","action":"find","
params":{"strategy":"name","selector":"password","context":"","multiple":false}}
info: [BOOTSTRAP] [info] Got command of type ACTION
info: [BOOTSTRAP] [debug] Got command action: find
info: [BOOTSTRAP] [debug] Finding password using NAME with the contextId:
info: [BOOTSTRAP] [info] Returning result: {"value":"No element found","status":
7}
info: Responding to client with error: {"status":7,"value":{"message":"An elemen
t could not be located on the page using the given search parameters.","origValu
e":"No element found"},"sessionId":"71ed55ce-c3ae-46d8-9ce7-674520992c0a"}
POST /wd/hub/session/71ed55ce-c3ae-46d8-9ce7-674520992c0a/element 500 783ms - 22
3b
为什么 findElement(By.name("")) 第二次不起作用?
最佳答案
使用 Appium Inspector 检查 -> 字段“密码”可能没有任何名称值设置为“密码”以访问它。
尝试使用 xpath 访问元素,例如:
WebElement password = driver.findElement(By.xpath("//window[1]/scrollview[1]/secure[1]"));
password.click();
password.sendKeys("psswrd");
按照以下步骤使用 Appium Inspector 获取 xpath 或其他属性:
[1] Launch Appium server.
[2] Check the check box 'App Path'.
[3] Click on the 'Choose' button and select your .app file location from your local, e.g. xyz.app
[4] Now click on the 'Launch' button . Once appium server is launched, the blue color icon besides the 'Launch' button is enabled.
[5] Click on the blue color icon, it will open up the appium inspector and simulator with your application :
您将看到您的应用的元素层次结构,显示名称、xPath、值等属性。
关于android - Appium Android Windows : driver. findElement(By.name (""))不能连续工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22223814/
在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
我是一名优秀的程序员,十分优秀!