in reply to Re: Reload Browser Tab on Windows
in thread Reload Browser Tab on Windows

yeah, sure. I also hacked a JS-snippet 15+ years ago that did a reload based on the change time of a local file. :)

But a little help with Win32::OLE would be nice. I'm also interested to move windows to have my IDE and Browsers side by side, depending on screen resolution.

Though looks like I can do it with powershell.

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

Replies are listed 'Best First'.
Re^3: Reload Browser Tab on Windows
by Corion (Patriarch) on Dec 21, 2020 at 21:42 UTC

    WWW::Mechanize::Chrome can move and resize the browser window as well:

    $mech->target->send_message('Browser.setWindowBounds', windowId => $window_info->{windowId}, bounds => { 'height' => 1600, 'top' => 0, 'width' => 2560, 'left' => 0, }, )->get;
      Sure ... but not FF or my editor or my SQL GUI or ...

      Cheers Rolf
      (addicted to the Perl Programming Language :)
      Wikisyntax for the Monastery