使用 Perl 配置 Selenium RC
我想将 Selenium RC 与 Perl 客户端驱动程序一起使用。如何使用 Perl 配置 Selenium RC?
I want to use Selenium RC with a Perl client driver. How can I configure Selenium RC with Perl?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
WWW::Selenium
模块进行链接最高可达 Selenium RC。您需要让 Selenium RC 在后台运行才能运行。
我发现从 Perl 中启动它有用的一种技术是在单独的线程上执行它,然后立即
分离
它:以下问题也可能有用:
Use the
WWW::Selenium
module to link up to Selenium RC.You will need to have Selenium RC running in the background in order for it to operate.
A technique that I have found useful to launch it from within Perl is to execute it on a separate thread and then immediately
detach
it:The following question may be useful as well:
请注意...对于 Selenium 2.0,您需要使用
Selenium::Remote::Driver
模块;WWW:Selenium
适用于 1.0。来自 Selenium 文档 (http://seleniumhq.org/docs/03_webdriver.html):
Just a heads-up... for Selenium 2.0, you'll want to use the
Selenium::Remote::Driver
module instead;WWW:Selenium
is for 1.0.From the Selenium docs (http://seleniumhq.org/docs/03_webdriver.html):