填写Mechanize :: Firefox中未命名的文本字段

时间:2018-03-28 15:18:51

标签: perl www-mechanize-firefox

我试图使用$mech->fields来填充一些未命名的字段,但我头上的头发已用完了,请帮助。

<input id="af-city" class="input-field af-city" autocomplete="address-level2" type="text" aria-required="true" placeholder="">
<input id="af-zip" class="input-field postal-code-validate af-zip" autocomplete="postal-code" type="text" aria-required="true" placeholder="">

尝试过使用xpath,没有用,在id前添加一个点或一个哈希让$mech知道这是一个id而不是一个名字,没用。

$mech->field( ".af-city", "Monsey");
$mech->field( {xpath => '//*[@id="af-zip"]'}, "10952");

0 个答案:

没有答案