FirefoxDriver - 硒和 XUL
我有一个用 XUL 编写的 Web 应用程序,我一直在尝试使用 FireFoxDriver 与浏览器交互。我可以找到一个元素,但是当我使用 sendKeys 或单击它时,它不会触发任何事件。这是我的代码
<rows>
<row>
<spacer height="10"/>
</row>
<row>
<label class="LoginLabels" control="login" value="&LOGIN_LABEL;"/>
<textbox id="login" onkeypress="doKey(event)" onclick="return false;"
ondblclick="return false;" persist="value" context="nocontext"/>
</row>
<row>
<spacer height="5"/>
</row>
<row>
<label class="LoginLabels" control="pass" value="&LOGIN_PASSWORD_LABEL;"/>
<textbox id="password" type="password" onkeypress="doKey(event)" onclick="return false;"
ondblclick="return false;" context="nocontext"/>
</row>
<row>
<spacer height="5"/>
</row>
</rows>
,我像这样使用 Selenium 的 FireFoxDriver
driver = new FirefoxDriver(mFirefoxProfile);
driver.get("/login.xul");
driver.findElement(By.id("login")).sendKeys('username');
driver.findElement(By.id("go")).click();
,这是错误,我得到
org.openqa.selenium.ElementNotVisibleException: Element is not currently visible and so may not be interacted with
系统信息:os.name:'Windows 7',os.arch:'amd64',os.version:'6.1',java。版本:'1.6.0_23' 驱动程序信息:driver.version:RemoteWebDriver 引起原因:org.openqa.selenium.remote.ErrorHandler$UnknownServerException:元素当前不可见,因此可能无法与之交互 系统信息:os.name:'Windows 7',os.arch:'amd64',os.version:'6.1',java.version:'1.6.0_23' 驱动程序信息:driver.version:未知 在.WebDriverError(文件:///C:/Users/POOYAN~1/AppData/Local/Temp/anonymous4952327108425051793webdriver-profile/extensions/[电子邮件受保护]/resource/modules/atoms.js:8435) 在 .(file:///C:/Users/POOYAN~1/AppData/Local/Temp/anonymous4952327108425051793webdriver-profile/extensions/[电子邮件受保护]/resource/modules/atoms.js:9366)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
老实说,Selenium 并不是您想要测试这些类型的应用程序的工具。
我建议使用 Mozmill,这是一个很棒的测试工具桌面自动化团队也使用该插件来自动化 Firefox 测试。它能够连接到浏览器 chrome,等等你想要的。
To be honest, Selenium is not the tool that you want for testing these types of applications.
I would recommend using Mozmill, which is a great tool for testing Addon's and is also used by the Desktop Automation team for Automating Firefox Tests. It has the ability to hook into the browser chrome and so what you want.