- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试使用 CssSelector 在我的网页上定位一个元素。我正在使用 Firefox 驱动程序。
这是我使用定位器的方式(我检查过 Selenium IDE 能够用它定位我的元素
[FindsBy(How = How.CssSelector, Using = "label:contains('Version: 2.0.')")]
public IWebElement labelVersion;
但是当在 C# 代码中使用它并用PageFactory.InitElements 在我的构造函数中。
我遇到了这个错误...(错误本身很清楚,但我不知道如何修复)
感谢任何输入。
OPC.Tests.SmokeTest (TestFixtureSetUp): SetUp : OpenQA.Selenium.InvalidSelectorException : The given selector css=label:contains('Version: 2.0.') is either invalid or does not result in a WebElement. The following error occurred: [Exception... "An invalid or illegal string was specified" code: "12" nsresult: "0x8053000c (NS_ERROR_DOM_SYNTAX_ERR)" location: "file:///........../anonymous439571104.webdriver-profile/extensions/fxdriver@googlecode.com/components/driver_component.js Line: 5811"]
最佳答案
Selenium 将 CSS 查询委托(delegate)给浏览器。这意味着 CSS 查询需要遵循 CSS 标准。
不幸的是 :contains 不久前从标准中删除了。我建议您使用 spec 中可用的内容重做您的选择器或使用 XPATH。
:contains 在 Selenium RC 中工作,因为 RC 使用 Sizzle,如果你想知道为什么它在 RC 而不是 WebDriver 中工作,jQuery 中的选择器搜索库
关于c# - OPC.测试.SmokeTest (TestFixtureSetUp) : SetUp : OpenQA. Selenium.InvalidSelectorException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10965586/
我想在远程 Ubuntu 服务器上的 Chrome 上运行我的 WebDriver 测试用例。我已经在该服务器上安装了最新的 Chrome,但是当我使用这个时,我遇到了这些错误: System.set
我正在尝试将 OperaDriver 用于 selenium。 IWebDriver wd = new OperaDriver(); 但使用 OpenQA.Selenium.Opera;不存在。我在
我尝试在 selenium webdriver 中使用带注释 By 的页面对象进行自动化测试,但 Eclipse 显示以下消息错误: java.lang.ClassCastException: org
我正在尝试使用页面对象模型自动化 selenium Web 驱动程序中的单选按钮。下面是我的代码解释: By AutomaticDataLockTimed = By.xpath("//span[@cl
我正在尝试通过 Maven 运行我的用户接受测试用例 (JBehave),但收到此错误: Error:(10, 8) java: cannot access org.openqa.selenium.H
我正在使用 Spring Boot 2 和 Appium 从头开始创建一个新的测试框架。为了编写测试,我使用了 JUnit,它已经包含在 Spring Boot 的 spring-boot-sta
我有同样的 issue作为这篇文章的链接,我目前正在重新阅读 Selenium HQ 文档,重点是设置 PATH 环境。这是我要运行的代码。 using System; using OpenQA.Se
我正在使用: 火狐 56.0.1 Selenium 3.6.0 Windows 10 家庭版 壁虎驱动程序 0.19.0 错误信息是 The package org.openqa.selenium i
我正在尝试使用我正在使用的 Selenium 进行黑盒测试: Mac 操作系统:版本:10.9.4 java.版本:1.6.0_65 浏览器:firefox 版本 32.0.3 Selenium :版
public class Admin { public static void main(String args[]) throws MalformedURLException
我正在尝试使用 xsl 表导入登录凭据,例如:用户名 和 密码,使用下面的代码,但在运行时出现 NoSuchElementException 异常, 我的 xsl 表看起来像: username
System.setProperty(“webdriver.ie.driver”,“D:\Selenium\jars\IEDriverServer\IEDriverServer.exe”); WebD
运行 Selenium WebDriver 2.37.1 我在运行测试时遇到间歇性问题并收到以下错误: org.openqa.selenium.NoSuchElementException: no s
在执行 java 代码期间执行 driver.close();driver.quit(); 时,会引发以下错误: Exception in thread "main" org.openqa.selen
我正在尝试导入一个类,但 Eclipse 无法识别下载的库。我尝试通过Maven->更新项目来更新我的Maven项目,但没有帮助。我尝试删除除 selenium-java 之外的所有依赖项,但在 Ma
我在 UI 测试期间遇到以下错误。 org.openqa.selenium.WebDriverException: Element not found or not visible for xpath
我正在运行适用于 Android 应用程序的 appium 脚本。 但它根本没有运行。 我已经在我的 Maven 项目中添加了运行测试所需的所有依赖项。 添加下面的所有代码。 请检查并帮助我。 启动类
我正在编写一个自动化测试,如果出现错误,我想直接在 GitHub 的存储库中报告。在我的程序中失败的步骤是来自 GitHub Issue Tracker 的 Submit new issue 按钮。
openqa.selenium 和 thoughtworks.selenium 有什么区别?它们如何相互兼容? openqa.selenium包中没有Selenium类,但有WebDriver类。我想
必须在文本框中输入文本,列表会自动扩展,我需要选择第一项。但由于异常而失败; OpenQA.Selenium.NoSuchElementException。我尝试使用 wait.Until(),但遇到
我是一名优秀的程序员,十分优秀!