Python Selen Chromedriver schöne Suppe

Beispielcode 1 (einfach anzeigen)


import time
from selenium import webdriver
import chromedriver_binary

driver = webdriver.Chrome()

driver.get('https://xxx')
time.sleep(2)    #2 Sekunden Gewicht

driver.close()
driver.quit()

Beispielcode 2 (Headless-Modus: Nicht mit schöner Suppe anzeigen und analysieren)


from bs4 import BeautifulSoup

import time
from selenium import webdriver
import chromedriver_binary
from selenium.webdriver.chrome.options import Options

option = Options()
option.add_argument('--headless')
driver = webdriver.Chrome(options=option)

driver.get('https://xxx')
time.sleep(2)    #2 Sekunden Gewicht

#Beim Parsen
soup = BeautifulSoup(driver.page_source,'html.parser')


driver.close()
driver.quit()

Recommended Posts

Python Selen Chromedriver schöne Suppe
Selen, Phantomjs & BeautifulSoup4
[Python / Selen] XPath
Screenshot mit Selen (Python Edition)
Schaben mit Selen [Python]
Untersuchung der Schrittautomatisierung passender Apps (Python, Selenium, BeautifulSoup,)
Schaben mit Selen in Python
Schaben mit Selen + Python Teil 1
Python: Arbeiten mit Firefox mit Selen
Python Selenium Dynamic Download warten
Starten Sie mit Python zu Selen
Selen WebDriver + Firefox49 (vorläufig) (Python)
Web Scraping mit Selenium (Python)
Schaben mit Selen + Python Teil 2
python beautifulsoup fordert glob find_all an
[Python + Selen] Tipps zum Scraping
Fordern Sie Python3 und Selenium Webdriver heraus
[Python Scraping] Ich habe versucht, Google Search Top10 mit Beautifulsoup & Selenium
Python
Scraping mit Selen in Python (Basic)
Selen
Schreiben Sie Selentestcode in Python
Selen und Python zum Öffnen von Google
Holen Sie sich HTML von Element mit Python-Selen
WebUI-Test mit Python2.6 + Selenium 2.44.0 - Profileinstellung
Starten Sie den Router mit Python, Selenium, PhantomJS neu
[Python] Betreiben Sie den Browser automatisch mit Selenium
Üben des Web-Scrapings mit Python und Selen
Download-Datei für Python Selen Chrome überschreiben