I have most of the code working for this now im just looking for selenium to get a console.log from Chrome
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("http://192.168.0.3:3333/")
time.sleep(1)
for entry in driver.get_log('browser'):
print entry
print
The problem im getting is 'webdriver' has no attribute 'get_log()' I have tried using 'driver.ChromeOptions.get_log()' but no attribute ChromeOptions.
im a little lost with this module as i have tried example code with the same results.