【已解决】PY新手求助,爬文章标题出错。
本帖最后由 13286036021 于 2021-8-30 13:42 编辑已经解决,确实是给墙了,网站打不开,非常感谢求助代码不知道哪里出错了,就是打印不出来标题
错误提示:
PS E:\Programs\test code> & C:/Python39/python.exe "e:/Programs/test code/demo.py"
DevTools listening on ws://127.0.0.1:55573/devtools/browser/61ce4532-b665-4521-9620-7e4ee18016b0
Bluetooth: bluetooth_adapter_winrt.cc:1073 Getting Default Adapter failed.
PS E:\Programs\test code>
代码截图
是不是红框内出错了
源代码如下:from typing import Text
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
PATH="D:\桌面\常用工具\chromedriver_win32\chromedriver.exe"
driver=webdriver.Chrome(PATH)
driver.get("https://www.dcard.tw/f")
# search=driver.find_element_by_name("q")
# search.send_keys("珠海")
# search.send_keys(Keys.RETURN)
titles=driver.find_elements_by_class_name("tgn9uw-3 cUGTXH")
for title in titles:
print(title.text)
time.sleep(3)
driver.quit()
网址不能访问 `Bluetooth: bluetooth_adapter_winrt.cc:1073 Getting Default Adapter failed`
这里有个fail,百度了一下,[【传送门】](http://www.deepsc.cn/index.php/archives/236/)
```python
options = webdriver.ChromeOptions()
options.add_experimental_option("excludeSwitches",["enable-logging"])
driver = webdriver.Chrome(options=options)
```
不知道这样行不行 网站被墙,打不开,考虑使用魔法 jjjzw 发表于 2021-8-29 16:51
`Bluetooth: bluetooth_adapter_winrt.cc:1073 Getting Default Adapter failed`
这里有个fail,百度 ...
还是不行{:1_909:} TES286 发表于 2021-8-30 11:39
网站被墙,打不开,考虑使用魔法
我用PY爬网站title是能出来的,然后爬这些文字标题就爬不出来了,全程开着魔法的 TES286 发表于 2021-8-30 11:39
网站被墙,打不开,考虑使用魔法
非常感谢,真的是给墙了
页:
[1]