如何使用PowerShell启动鼠标单击按钮?

时间:2014-10-28 09:28:45

标签: shell internet-explorer powershell search-engine

大家早上好,我是PowerShell Scripting的初学者,我正在尝试制作一个powerShell脚本。目标是在Internet Web浏览器中自动安装Google搜索引擎。 这是附加组件的链接:http://www.iegallery.com/Addons/Details/1674

Google要求用户是否要将Google添加为默认网络浏览器的网址是: http://www.google.com/search?q=&sourceid=ie7&rls=com.microsoft&ie=&oe=

我希望我的脚本在“Gagnez du temps avecGoogle.Mettezàjourvotre moteur de recherchepardéfaut”的问题上自动点击“确定”。它基本上意味着“用谷歌更新您的网络浏览器。这里是我的脚本的开始

$pathURL = "http://www.google.com/search?q=&sourceid=ie7&rls=com.microsoft&ie=&oe="


$ie = New-Object -comobject InternetExplorer.Application 
$ie.visible = $true 
$ie.silent = $true 
$ie.Navigate($pathURL)

是否有人知道如何启动点击以点击“确定”?

我在另一个主题中发现了这种代码,但我不知道如何将它用于我的脚本:

#while($ie.busy){Start-Sleep 1} 
#$secLink = $ie.Document.getElementsByTagName('A') | Where-Object {$_.innerText -eq 'Gagnez du temps avec Google. Mettez à jour votre moteur de recherche par défaut.'} 
#$secLink.click()

谢谢你, 迈克尔

0 个答案:

没有答案