0
我在使用AttachTo和Powershell時遇到問題。我搜索了,但找不到任何使用AttachTo的Powershell示例。AttachTo使用Watin和Powershell的IE瀏覽器
這不起作用: $ IE2 = $ ie.AttachToIE([watin.core.Find] :: ByTitle( 「任務選擇」))
我想我不知道語法。 .NET使用哪些在PS中不起作用。
我在使用AttachTo和Powershell時遇到問題。我搜索了,但找不到任何使用AttachTo的Powershell示例。AttachTo使用Watin和Powershell的IE瀏覽器
這不起作用: $ IE2 = $ ie.AttachToIE([watin.core.Find] :: ByTitle( 「任務選擇」))
我想我不知道語法。 .NET使用哪些在PS中不起作用。
試試這個:
$ie = (New-Object -COM 'Shell.Application').Windows() | ? {
$_.Name -eq 'Windows Internet Explorer' -and
$_.LocationName -eq 'Task Selection'
}
感謝-奏效。我仍然不知道爲什麼它會失去聯繫,但至少我可以恢復。 – user1612851