selenium3.8以上的版本warnings.warn('use options instead of chrome_options', Deprecati
Posted xiaoxiao-niao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium3.8以上的版本warnings.warn('use options instead of chrome_options', Deprecati相关的知识,希望对你有一定的参考价值。
警告内容,是chrome_options已经被弃用;使用options来代替chrome_options
所以在调用chrome的chrome_options会报警告内容。想去除警告内容。需要将chrome_options修改为options
代码示例1:
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("start-maximized")
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.implicitly_wait(30)
base_url = "http://www.baidu.com/"
driver.get(cls.base_url)
使用chrome_options提示警告内容
代码示例2:
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("start-maximized")
driver = webdriver.Chrome(options=chrome_options)
driver.implicitly_wait(30)
base_url = "http://www.baidu.com/"
driver.get(cls.base_url)
使用options不会再提示警告内容
以上是关于selenium3.8以上的版本warnings.warn('use options instead of chrome_options', Deprecati的主要内容,如果未能解决你的问题,请参考以下文章
Warning: Using a password on the command line inte
WARNING: The host '$hostname' could not be looked up with resolveip. (转)