代码拉取完成,页面将自动刷新
"""
使用无头浏览器获取数据
"""
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()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。