Good day. There is such a problem that to open a pop-up window, you need to double-click on the object. So if enough to click:
$link = $IE.Document.getElementsByTagName("input") | where-object {$_.value -eq "Привет"} $link.click() Then for double clicking to register twice $link.click() does not work. Can anyone tell me how to handle this?