python selenium TypeError: 'module' object is not callable
时间: 2023-10-17 16:25:09 浏览: 279
python-selenium:使用Python Selenium进行GUI自动化测试
5星 · 资源好评率100%
这个报错通常是因为您使用了错误的模块调用方式。根据您提供的引用内容,您引用了两种不同的模块调用方式。第一种模块调用方式是使用`webdriver.chrome()`,第二种模块调用方式是使用`webdriver.Chrome()`。正确的模块调用方式应该是使用大写字母C来调用Chrome模块。因此,解决这个问题的方法是修改您的代码,将`webdriver.chrome()`修改为`webdriver.Chrome()`。这样修改后,您的程序应该可以正常运行了。 <span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [python-selenium:使用Python Selenium进行GUI自动化测试](https://download.csdn.net/download/weixin_42157188/18321191)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *2* *3* [Python selenium中出现错误:driver = webdriver.chrome() TypeError: ‘module‘ object is not callable](https://blog.csdn.net/qq_55660421/article/details/127528327)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文