Même si je l'ai recherché, il n'est pas sorti facilement, alors j'ai pris une note. (S'il vous plaît dites-moi s'il y a une meilleure façon)
--Lisez la liste des URL à partir d'un fichier externe (list.tsv)
screen_shot.robot
*** Settings ***
Library SeleniumLibrary
Variables ./import.py
*** Keywords ***
Create Chrome Driver
${options} = Evaluate sys.modules['selenium.webdriver'].ChromeOptions() sys
Call method ${options} add_argument --headless
Create webdriver Chrome chrome_options=${options}
*** Test Cases ***
mot-clé
Create Chrome Driver
${w} = Execute JavaScript return document.body.scrollWidth
${h} = Execute JavaScript return document.body.scrollHeight
Set Window Size ${w} ${h}
Set ScreenShot Directory path=screenshot
${length}= Get Length ${conditions}
:FOR ${idx} IN RANGE ${length}
\ Go To @{urls}[${idx}]
\ Capture Page Screenshot filename=@{conditions}[${idx}].png
import.py
import csv
with open('list.tsv') as f:
reader = csv.reader(f, delimiter='\t')
l = [row for row in reader]
l_T = [list(x) for x in zip(*l)]
conditions = l_T[0]
urls = l_T[1]
list.tsv
Chat https://www.google.com/search?q=%E3%81%AD%E3%81%93&tbm=isch
Inu https://www.google.com/search?q=%E3%81%84%E3%81%AC&tbm=isch
Saru https://www.google.com/search?q=%E3%81%95%E3%82%8B&tbm=isch
Recommended Posts