国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > PowerShell > 正文

PowerShell小技巧實(shí)現(xiàn)IE Web自動(dòng)化

2020-10-29 21:03:16
字體:
供稿:網(wǎng)友

Windows 系統(tǒng)自帶的Internet Explore +加上PowerShell 即可搞定。

今天就分享下這幾天自己寫的幾個(gè)小函數(shù),歡迎拍磚:

## 打開IE窗口#function New-IEWindow{  param(  [string]$Url,  [switch]$Visible,  [switch]$FullScreen  )  $Global:IEHost = new-object -com "InternetExplorer.Application"  $Global:IEHost.Navigate($Url)   #設(shè)置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      }} ## 根據(jù)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) }  } ##關(guān)閉IE窗口#function Close-IEWindow{  $Global:IEHost.quit()  Remove-Variable IEHost -Force} ##設(shè)置IE的地址#function Navigate-IE($Url){ Set-IE -URL $Url} ## 設(shè)置IE的地址,或者動(dòng)作:前進(jìn),倒退,刷新#function Set-IE{ param( [ValidateSet('GoBack', 'GoForward','Refresh')] [string]$Action, [uri]$URL )  # 動(dòng)作 switch($Action) { ('GoBack'){ $Global:IEHost.GoBack() } ('GoForward'){ $Global:IEHost.GoForward() } ('Refresh'){ $Global:IEHost.Refresh() } }  # 設(shè)置IE地址 if( $URL) { $Global:IEHost.Navigate($URL) }} ## 在IE窗口中執(zhí)行腳本#function Invoke-IEScript($Code,$Language='Javascript'){ if( -not [string]::IsNullOrWhiteSpace($Code)) { $Global:IEHost.Document.parentWindow.execScript($Code,$Language) }}

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 隆化县| 巧家县| 麦盖提县| 平武县| 张掖市| 中西区| 桂东县| 来宾市| 大理市| 应城市| 富民县| 平罗县| 周口市| 宁远县| 株洲县| 城步| 巨鹿县| 无极县| 庆城县| 确山县| 长岭县| 修文县| 鄂托克旗| 延津县| 汨罗市| 皋兰县| 乌拉特前旗| 鹤山市| 平潭县| 固镇县| 安乡县| 衡阳市| 平昌县| 南澳县| 德惠市| 类乌齐县| 沛县| 桂阳县| 吉首市| 光山县| 济源市|