Wimaxの転送量をmuninで可視化したいとおもった. ログインしなくても,WiMAX HOME 01のトップページに3日間の転送量が出ているのでこの値と使おうと思った. Raspberry Pi 3で構築 0.準備 python3をインストールしておく $> sudo pip3 install selenium 1./usr/local/bin/chk_wimax.py を作成. ------------------------- #!/usr/bin/env python3 from selenium import webdriver url = 'http://192.168.3.254' # Selenium settings options = webdriver.ChromeOptions() options.add_argument('--headless') driver = webdriver.Chrome(executable_path='/usr/bin/chromedriver', chrome_options=options) driver.get(url) mycount = 0 for myli in driver.find_elements_by_tag_name("li"): mycount = mycount +1 if mycount == 12 : print(myli.text.replace("GB/10GB","").replace(" ",""), end="") #fuga_str = driver.find_element_by_class_name("value") #print(fuga_str) #myPage=driver.page_source #print(myPage) driver.quit() --------------------------------------- 2. /usr/...