1

我一直在使用 Selenium IDE 和 Selenium Remote Driver 来测试一个网站。当我将文件导出到 perl 并尝试运行它时,尝试打开 Javascript 链接时出现错误。这是我一直在尝试的代码:

#!/usr/bin/perl
use strict;
use warnings;
use Time::HiRes qw(sleep);
use Test::WWW::Selenium;
use Test::More "no_plan";
use Test::Exception;
use Env;

my $sel = Test::WWW::Selenium->new( host => "localhost", 
                                port => 4444, 
                                browser => "*firefox", 
                                browser_url => "http://cpc.cs.qub.ac.uk/" );


$sel->open_ok("http://cpc.cs.qub.ac.uk/" , undef, "Getting Webpage CPC");
$sel->set_speed("1000");            
$sel->wait_for_page_to_load_ok("10000");    
$sel->select_frame_ok("toolbar");

$sel->click_ok(" //a[contains(\@href,'javascript:goTo(overview.html');)] ");
#and tried this format as well
$sel->click_ok("//a[\@href='javascript:goTo('overview.html');']");
$sel->wait_for_page_to_load_ok("10000");    

它说找不到元素,我一直在尝试使用 Xpath 作为定位器,但似乎无法定位。以下是我尝试单击的链接的 html:

<title>CPC Toolbar</title>
        <script language="javascript" src="./toolbar.js"></script>

<tr>
    <td align="center" >
    <a href="javascript:goTo('overview.html');" onMouseover="libserv.src='icons/redlibserv.gif'" onMouseout="libserv.src='icons/bluelibserv.gif'"><IMG SRC="icons/bluelibserv.gif" name="libserv" width="100" height="20" border="0">
    </a>
    </td>   
</tr>

任何有关如何实现这一点的帮助将不胜感激。在 WWW::Selenium 模块中,它提供了这些 xpath 格式以用作定位器:

xpath=//img[@alt='The image alt text']
xpath=//table[@id='table1']//tr[4]/td[2]
xpath=//a[contains(@href,'#id1')]
xpath=//a[contains(@href,'#id1')]/@class
xpath=(//table[@class='stylee'])//th[text()='theHeaderText']/../td
xpath=//input[@name='name2' and @value='yes']
xpath=//*[text()="right"]
4

4 回答 4

1

到目前为止我找到的解决方案是降级到 FF21 并安装 Sel 2.1.0 IDE 工作正常。但是他们已经发布了 sel 2.2.0 IDE,其中包含针对 FF22 的修复程序,并且可以确认它工作正常。

于 2013-07-08T09:54:04.963 回答
1

Firefox 22 版引入了一个问题,因此 selenium 不能与 FireFox 22 一起使用。

https://code.google.com/p/selenium/issues/detail?id=5554 https://code.google.com/p/selenium/issues/detail?id=5841 https://code.google。 com/p/selenium/source/detail?r=d1b1fc24f060

它在 Selenium 2.33 中没有解决,但应该在 2.34 中。与此同时,唯一的解决方案似乎是手动降级到 Firefox 21:

http://support.mozilla.org/en-US/kb/install-older-version-of-firefox https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/21.0/win32/en -US/Firefox%20Setup%2021.0.exe

于 2013-07-11T11:19:01.867 回答
1

我相信这是 Firefox 22 和 selenium 的问题,在发布时尚未解决

编辑 - 来源:https ://code.google.com/p/selenium/issues/detail?id=5554

于 2013-07-05T15:29:20.680 回答
0

XPath 引用是错误的。您不能使用相同的字符(撇号)来分隔多个事物。

$sel->click_ok(q(//a[@href="javascript:goTo('overview.html');"]));

代码未经测试。

于 2013-07-05T10:59:04.927 回答