1
我必須點擊以下頁面上的登錄按鈕一個問題:點擊WordPress的登錄頁面上的按鈕
https://community.theme.co/wp/wp-login.php
我試圖單擊下面的代碼的按鈕:
$submitButton = $ie.document.getElementById("wp-submit").Click();
foreach ($element in $submitButton)
{
if ($element.Name -eq "wp-submit") {
$element.Click()
}
}