我想更好地了解scrapy的功能。这是一个非常简单的selenium代码,它可以与网站交互,填充一些框,点击一些元素,下载一个文件。这个代码可以用scrapy复制吗?这样,用scrapy编写的代码就可以做完全相同的事情。
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
options=Options()
options.add_argument("--window-size=1920,1080")
driver=webdriver.Chrome(options=options)
driver.get("https://www.ons.gov.uk/")
WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.NAME, "q"))).send_keys("Education and childcare")
click_button=driver.find_element_by_xpath('//*[@id="nav-search-submit"]').click()
click_button=driver.find_element_by_xpath('//*[@id="results"]/div[1]/div[2]/div[1]/h3/a/span').click()
click_button=driver.find_element_by_xpath('//*[@id="main"]/div[2]/div[1]/section/div/div[1]/div/div[2]/h3/a/span').click()
click_button=driver.find_element_by_xpath('//*[@id="main"]/div[2]/div/div[1]/div[2]/p[2]/a').click()
1条答案
按热度按时间y53ybaqx1#
"selenium code be recreated using scrapy"
也可以很好地与SeleniuRequest
一起工作,这是superfast
比一般的 selenium 。你需要一个零碎的项目。它作为无头模式工作,但总是得到每一步的截图。脚本:
Screenshot
settings.py 档案:
您必须在www.example.com文件中添加以下选项settings.py
SeleniumRequest
输出:
screenshot of the project looks like
How to download pdf using scrapy
screenshot