gpt4 book ai didi

javascript - Powershell 单击 javascript 链接

转载 作者:行者123 更新时间:2023-11-30 13:02:00 24 4
gpt4 key购买 nike

这是超链接代码

<a href="javascript:void(1)" onclick="server_playOn(17,2, 'est', this);">
Example
</a>

这是我当前的 powershell 代码。

Get-Process iexplore | Foreach-Object { $_.CloseMainWindow() }
$username = "user"
$password = "pass"
$ie = New-Object -comobject InternetExplorer.Application
$ie.visible=$true
$ie.FullScreen=$true
$ie.navigate("http://www.example.com/en/index.shtml")
while($ie.ReadyState -ne 4) {start-sleep -m 100}
trap [Exception]
{
# This will happen if you're already logged in
if($_.Exception.Message -eq "Property 'value' cannot be found on this object; make sure it exists and is settable." -Or $_.Exception.Message -eq "You cannot call a method on a null-valued expression.")
{
# Try and skip this error
continue; }
else {
# Fail for other Exceptions
Write-Host -ForegroundColor Red $_.Exception.Message; }
}

##if not logged in
Write-Host -ForegroundColor Green "Logging into example.com";
$ie.document.getElementById("username").value = "$username"
$ie.document.getElementById("pass").value = "$password"
$ie.document.getElementById("frmLogin").submit()
start-sleep 5
$ie.navigate("http://www.example.com/en/link5.shtml")
##need to add click code here

最佳答案

在脚本末尾添加这些行:

$link = @($ie.Document.getElementsByTagName('A')) | Where-Object {$_.innerText -eq 'Example'}
$link.click()

关于javascript - Powershell 单击 javascript 链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17077386/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com