2

Anyone know how to refresh a chrome tab from a batch file?

Comments
  • 0
    Like a livereload to refresh when you change the code?
  • 1
    Er... Not sure. I just want to run a batch file that refreshes a web page when I run it.
  • 1
    Not sure if there's a CLI tool for chrome that does that, but it can be done with tricky ways like sending ctrl+r key to the browser or injecting js script that connects simple nodeJs or python server
  • 1
    Hm. .. I'll try them out
  • 0
    What about using a thin html script, which gets the content of another website via Ajax httprequest. With JavaScript setTimeout, you can specify the update interval.

    Cheers
  • 0
    Write a little Chrome extension. Should be simple enough to reload a tab, I think. Suspect there's probably some that already do in the Store.
  • 1
    You might want to check out Selenium
Add Comment