Skip to content

Instantly share code, notes, and snippets.

@Shih-Po
Last active July 24, 2017 07:09
Show Gist options
  • Select an option

  • Save Shih-Po/2a309513d62e560f12c48e58f209d0b9 to your computer and use it in GitHub Desktop.

Select an option

Save Shih-Po/2a309513d62e560f12c48e58f209d0b9 to your computer and use it in GitHub Desktop.
minimal-pieces
from selenium import webdriver
DRIVER_PATH = './drivers/chromedriver'
br = webdriver.Chrome(DRIVER_PATH)
url = ('https://www.amazon.com/Economist-Guide-Economic-Indicators-Economics/product-reviews'
'/0471248371/ref=cm_cr_arp_d_show_all?ie=UTF8&reviewerType=all_reviews&sortBy=recent&pageNumber=1')
br.get(url)
res_text = br.page_source
br.quit()
print(res_text[:10])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment