FirefoxDriver - 硒和 XUL

发布于 2024-11-01 19:43:41 字数 2633 浏览 0 评论 0 原文

我有一个用 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)

I have a web application written in XUL and I've been trying to use FireFoxDriver to interact with the browser. I can locate an element, but when I use the sendKeys or click it doesn't trigger any event. here are my code

 <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>

and I am using Selenium's FireFoxDriver like this

driver = new FirefoxDriver(mFirefoxProfile);
driver.get("/login.xul");
driver.findElement(By.id("login")).sendKeys('username');
driver.findElement(By.id("go")).click();

and here is the error, I get

org.openqa.selenium.ElementNotVisibleException: Element is not currently visible and so may not be interacted with

System info: os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.6.0_23'
Driver info: driver.version: RemoteWebDriver
Caused by: org.openqa.selenium.remote.ErrorHandler$UnknownServerException: Element is not currently visible and so may not be interacted with
System info: os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.6.0_23'
Driver info: driver.version: unknown
at .WebDriverError(file:///C:/Users/POOYAN~1/AppData/Local/Temp/anonymous4952327108425051793webdriver-profile/extensions/[email protected]/resource/modules/atoms.js:8435)
at .(file:///C:/Users/POOYAN~1/AppData/Local/Temp/anonymous4952327108425051793webdriver-profile/extensions/[email protected]/resource/modules/atoms.js:9366)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烈酒灼喉 2024-11-08 19:43:41

老实说,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文