我正在使用selenium和chromedriver学习使用python进行网络抓取。
from selenium import webdriver
driver=webdriver.Chrome(executable_path=r'C:\chromedriver\chromedriver.exe')
driver.get('http://python.org')
html_con=driver.page_source
print('html_con')
只是打开了url,但sublime文本未在构建输出中显示html
答案 0 :(得分:1)
在打印语句中的“ html_con”周围删除引号。
print(html_con)
否则,您只是告诉解释器打印字符串'html_con'。
答案 1 :(得分:0)
print('html_con')
这将只是打印>> html_con,因为用引号引起来是说打印此字符串而不是对象html_con。这对我来说使用Sublime3