Skip to content

Instantly share code, notes, and snippets.

@korolr
Created January 6, 2019 15:53
Show Gist options
  • Save korolr/ddf359d593b63631c750d309a397d624 to your computer and use it in GitHub Desktop.
Save korolr/ddf359d593b63631c750d309a397d624 to your computer and use it in GitHub Desktop.
from selenium import webdriver
import time
def main():
driver = webdriver.Firefox()
driver.get("https://www.allbestbets.com/arbs")
time.sleep(0.7)
with open('index.html', 'w') as f:
f.write(driver.page_source)
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment