There’s a PowerShell script named itunesForward.ps1 that makes iTunes fast forward 30 seconds: $iTunes = New-Object -ComObject iTunes.Application if ($iTunes.playerstate -eq 1) { $iTunes.PlayerPosition = $iTunes.PlayerPosition + 30 }...
  • May 2, 2022
  • 0 Comments
You have two buttons with given xpath on this page, first is not visible, thats why you are getting ElementNotVisibleException One is under <div class="loginPopup"> Second (the one you need)...
  • April 4, 2022
  • 0 Comments