Skip to content

Instantly share code, notes, and snippets.

@gsisko
Created January 30, 2019 01:59
Show Gist options
  • Save gsisko/9144e14dc42612ee6751d1a06d08a6dd to your computer and use it in GitHub Desktop.
Save gsisko/9144e14dc42612ee6751d1a06d08a6dd to your computer and use it in GitHub Desktop.
from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager
driver = webdriver.Chrome(ChromeDriverManager().install())
url = 'https://www.carvana.com/cars'
driver.get(url)
_html = driver.page_source
from bs4 import BeautifulSoup
print(BeautifulSoup(_html))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment