AttributeError: 'WebDriver' object has no attribute 'switch_to_window'
时间: 2023-08-02 22:08:35 浏览: 237
WebDriver
引用\[1\]:在使用Selenium 库对动态网站进行爬取操作的时候,出现switch_to_window属性不存在的错误,出现这个错误说明该属性在库中已经不存在了,可能该属性是低版本中出现过,现在这个属性的用法要换成 switch_to.window 。\[1\]
问题:AttributeError: 'WebDriver' object has no attribute 'switch_to_window'
回答: 出现AttributeError: 'WebDriver' object has no attribute 'switch_to_window'的错误是因为在Selenium库的较新版本中,switch_to_window属性已经被移除了。现在应该使用switch_to.window来代替该属性。所以,您需要将代码中的switch_to_window改为switch_to.window来解决这个错误。
#### 引用[.reference_title]
- *1* [【Python爬虫】AttributeError: ‘WebDriver‘ object has no attribute ‘switch_to_window](https://blog.csdn.net/u010321564/article/details/126342666)[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^v91^control_2,239^v4^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文