Created
January 30, 2019 01:59
-
-
Save gsisko/9144e14dc42612ee6751d1a06d08a6dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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