Powershell打开下拉菜单/单击链接

时间:2014-12-02 12:41:34

标签: html windows powershell

我对Poershell有点问题。

我希望点击链接以获取更多信息。但问题是,链接在下拉菜单中。

通常情况下,我会使用类似的东西

$ie = New-Object -COMObject InternetExplorer.Application
$ie.visible = $fasle
$link = $ie.Navigate('url')
$link = $ie.Document.getElementsByTagName('A')| 
    where-object {$_.innerText -eq 'my match'}

$link.click()

下拉菜单看起来像这样:

<td>

  <select class="form" name="request" onchange="form.change();">

        <option value="someValue" >Name</option>
        <option value="someValue2" >MyLink</option>

e.g。我想点击“ MyLink ”。

提前致谢

0 个答案:

没有答案