chromote icon indicating copy to clipboard operation
chromote copied to clipboard

Simple wrapper to drive Google Chrome from Python

Results 8 chromote issues
Sort by recently updated
recently updated
newest added

There is a small typo in example/run.py. Should read `demonstrating` rather than `demostrating`. Semi-automated pull request generated by https://github.com/timgates42/meticulous/blob/master/docs/NOTE.md

This adds simple wrappers for input methods, all just so that we don't have to remember the chrome api method names and create the params objects.

This pull request handles displaying of the browser version as well as ability to cleanly close the browser based on the [DevTools v1.3 API](https://chromedevtools.github.io/devtools-protocol/1-3/Browser#method-close)

Thanks for this tool! I've previously used this tool in a personal project. In order to speed up execution I added methods to connect (and close) the websocket, so that...

I couldn't get Chrome to start with the remote debugging port enabled. I finally realized that you have to kill any chrome processes on Windows first, before you can start...

Hi, thanks for your job! By using chromote, i can set a url to remote Chrome(in docker container) and return a html code, but i can't sent a post request...

Hey, thanks for making this repo. I tried to run but I'm running into an issue: ``` >>> from chromote import Chromote >>> chrome = Chromote() >>> chrome Chromote(host="localhost", port=9222)...