You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
I have no clue if that works as never messed with headless browsers, but you have to have WASM for this to work. Like if you had some weird Wawei phone with no WASM, this miner will not work.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.binary_location = '/usr/bin/google-chrome'
options.add_argument('--headless')
options.add_argument('--window-size=1280,1024')
options.add_argument('--no-sandbox')
driver = webdriver.Chrome('/root/bin/chromedriver', chrome_options=options)
driver.get('http://vraku.com:8080/n20.html') # mine.html 20% cpu use
sleep 10s
driver.save_screenshot('/tmp/screenshot.png')
The text was updated successfully, but these errors were encountered: