Skip to content

Instantly share code, notes, and snippets.

@szafka
Created November 24, 2020 15:51
Show Gist options
  • Save szafka/576d6fabe53f55ceac4f10aeeddc0497 to your computer and use it in GitHub Desktop.
Save szafka/576d6fabe53f55ceac4f10aeeddc0497 to your computer and use it in GitHub Desktop.
from selenium import webdriver
driver = webdriver.Chrome(executable_path=r"C:\TestFiles\chromedriver.exe")
driver.get('https://xxxstwory.pl')
title = driver.title
print(title)
driver.quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment