0

我正在使用 WWW::Mechanize::Firefox。如何通过 id 输入内容,然后按链接女巫,使用 JS,提交页面?

<input id="my_input" type="text" class="some_class"/>
<a id="send_with_me" href="#">Press me</a>

怎么做?

谢谢

对鲍罗丁要求的答复:

my $mech = WWW::Mechanize::Firefox->new(
    activate => 1
);

my $content = $mech->get("http://some_url.com");
$mech->field(".my_select_element_by_class", 1); #select element from select by class

我想通过 id 将值输入到输入中。像这样的东西:

$mech->field("#my_input", 100);
$mech->some_method_witch_press_href("#send_with_me");
4

1 回答 1

0

你需要这个来点击链接(通过 CSS 选择器):

$mech->field("#my_input", 100);
$mech->click({ selector => '#some_id' });
于 2014-11-20T04:51:57.950 回答