Begin sensor image exporter
This commit is contained in:
19
export/main.py
Normal file
19
export/main.py
Normal file
@@ -0,0 +1,19 @@
|
||||
import time
|
||||
|
||||
from selenium import webdriver
|
||||
from selenium.webdriver.chrome.options import Options
|
||||
from selenium.webdriver.common.by import By
|
||||
|
||||
chrome_options = Options()
|
||||
chrome_options.add_argument('--headless')
|
||||
chrome_options.add_argument('--no-sandbox')
|
||||
driver = webdriver.Chrome('/usr/lib/chromium-browser/chromedriver', options=chrome_options)
|
||||
driver.get('https://sensors.dns.t0.vc')
|
||||
time.sleep(3)
|
||||
|
||||
element = driver.find_element(By.ID, 'Solar_Power')
|
||||
|
||||
with open('image.png', 'wb') as f:
|
||||
f.write(element.screenshot_as_png)
|
||||
|
||||
driver.close()
|
Reference in New Issue
Block a user