使用IE的COM对象来完成简单的Web自动化测试,是最小巧和廉价的Web自动化测试了,因为它不用引入第三方插件或者工具。Windows 系统自带的Internet Explore +加上PowerShell 即可搞定。
今天就分享下这几天自己写的几个小函数,欢迎拍砖:
#
# 打开IE窗口
#
function New-IEWindow
{
param(
[string]$Url,
[switch]$Visible,
[switch]$FullScreen
)
$Global:IEHost = new-object -com "InternetExplorer.Application"
$Global:IEHost.Navigate($Url)
#设置IE可见性和全屏
$Global:IEhost.Visible= $Visible
$Global:IEHost.FullScreen= $FullScreen
}
#
#等待IE加载完毕
#
function Wait-IEReady([int]$TimeoutSeconds=10)
{
$milliseconds=0
$maxMilliseconds = $TimeoutSeconds * 1000
while($Global:IEHost.Busy)
{
if($milliseconds -gt $maxMilliseconds)
{
throw 'Wait ie ready timeout.'
}
sleep -Milliseconds 100
$milliseconds+=100
}
}
#
# 根据ID,Class,Name,Tag获取HTML元素
#
function Get-HtmlElement ($Id,$Name,$Class,$Tag)
{
if($Id)
{
return $IEHost.Document.getElementById($id)
}
elseif($Name)
{
return $IEHost.Document.getElementsByName($Name)
}
elseif($Class)
{
$IEHost.Document.all | where {$_.className -contains $Class}
}
elseif($Tag)
{
$IEHost.Document.getElementsByTagName($Tag)
}
}
#
#关闭IE窗口
#
function Close-IEWindow
{
$Global:IEHost.quit()
Remove-Variable IEHost -Force
}
#
#设置IE的地址
#
function Navigate-IE($Url)
{
Set-IE -URL $Url
}
#
# 设置IE的地址,或者动作:前进,倒退,刷新
#
function Set-IE
{
param(
[ValidateSet('GoBack', 'GoForward','Refresh')]
[string]$Action,
[uri]$URL
)
# 动作
switch($Action)
{
('GoBack'){ $Global:IEHost.GoBack() }
('GoForward'){ $Global:IEHost.GoForward() }
('Refresh'){ $Global:IEHost.Refresh() }
}
# 设置IE地址
if( $URL) {
$Global:IEHost.Navigate($URL) }
}
#
# 在IE窗口中执行脚本
#
function Invoke-IEScript($Code,$Language='Javascript')
{
if( -not [string]::IsNullOrWhiteSpace($Code))
{
$Global:IEHost.Document.parentWindow.execScript($Code,$Language)
}
}
本文链接: https://www.pstips.net/ie-auto.html
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!

long time no see.之前研究过,发现有些没ID的按钮不能使用点击动作。还有很多类似问题。
建议直接写成 .psm1
你好,我在执行
$IEHost.Document.parentWindow.execScript($Code,$Language)的时候报错
错误为 不能对值为空的表达式调用方法,但是我在Powershell ISE中执行的时候是可以正常运行的,能请问一下为什么吗?