top | item 19345947 (no title) androidgirl | 7 years ago You can do this with Selenium pretty easily, and low level webdrivers support it too. discuss order hn newest TicklishTiger|7 years ago I would give low level webdrivers a go. But so far I have not even figured out how to install one for Chromium on Debian. apt install chromedriver gives me: Package 'chromedriver' has no installation candidate There is something called "chromium-chromedriver".Let me try that ... one moment ...Ok. So I start it via: apt install chromium-chromedriver Now according to the docs, this should create a browser: curl -d '{ "desiredCapabilities": { "caps": { "nativeEvents": false, "browserName": "chrome", "version": "", "platform": "ANY" } } }' http://localhost:9515/session Ha! It works!So chromedriver might be a solution!
TicklishTiger|7 years ago I would give low level webdrivers a go. But so far I have not even figured out how to install one for Chromium on Debian. apt install chromedriver gives me: Package 'chromedriver' has no installation candidate There is something called "chromium-chromedriver".Let me try that ... one moment ...Ok. So I start it via: apt install chromium-chromedriver Now according to the docs, this should create a browser: curl -d '{ "desiredCapabilities": { "caps": { "nativeEvents": false, "browserName": "chrome", "version": "", "platform": "ANY" } } }' http://localhost:9515/session Ha! It works!So chromedriver might be a solution!
TicklishTiger|7 years ago
Let me try that ... one moment ...
Ok. So I start it via:
Now according to the docs, this should create a browser: Ha! It works!So chromedriver might be a solution!