我可以 console.log 进入 Selenium 驱动程序吗?

Can I console.log into Selenium driver?

我想知道是否可以在 selenium webdriver 中写入打开页面的控制台,例如,像这样:

driver = webdriver.Chrome()
driver.get(url)
driver.console.log("something")
   driver.execute_script("console.log('something')")

使用driver.execute_script在浏览器控制台上执行javascript