1 Star 0 Fork 1

jackfrued/hellopc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
example09.py 853 Bytes
一键复制 编辑 原始数据 按行查看 历史
jackfrued 提交于 2020-06-23 10:22 . 使用aiohttp联网获取数据
"""
使用无头浏览器获取数据
"""
import time
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
options = webdriver.ChromeOptions()
# 添加参数启动无头浏览器(没有浏览器界面)
options.add_argument('headless')
chrome = webdriver.Chrome(options=options)
chrome.get('https://image.so.com/')
search_input = chrome.find_element_by_css_selector('#search_kw')
search_input.send_keys('美女')
search_input.send_keys(Keys.RETURN)
for pos in range(1, 20):
chrome.execute_script(f'window.scrollTo(0, {pos * 3000})')
time.sleep(2)
# wait = WebDriverWait(chrome, 10)
# wait.until(expected_conditions.presence_of_all_elements_located((By.TAG_NAME, 'img')))
images = chrome.find_elements_by_css_selector('span.img>img')
for image in images:
print(image.get_attribute('src'))
chrome.quit()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jackfrued/hellopc.git
[email protected]:jackfrued/hellopc.git
jackfrued
hellopc
hellopc
master

搜索帮助