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?

  • $ link.add_DoubleClick () Tak? - Paulo Berezini
  • No, this code will only specify processing when you double-click on this link, and I need to double-click powershell myself. - Featurist

0