如何使用Selenium Perl API获取当前URL

时间:2011-06-09 06:36:06

标签: perl url selenium

我只是想获取页面的当前绝对URL。这是代码的片段

my $url_str = "BEFORE";
$sel->storeLocation("url_str");
$sel->comment(URL is $url);

Send command: storeLocation|url_str|
Got result  : OK
Comment     : URL is BEFORE

它似乎不起作用。我尝试使用$ url_str,\ $ url_str作为storeLocation的参数但是徒劳无功。请帮助我在这里错过了什么

1 个答案:

答案 0 :(得分:0)

Perl API使用更多Perlish'get_'作为前缀,而不是'store'的Selenium标准。此外,Perl API使用下划线而不是驼峰情况。

# returns the current url
$sel->get_location()

另见: