Skip to content

Instantly share code, notes, and snippets.

@TomoG29
Created January 31, 2024 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TomoG29/dfd6d7f8df47ddee2e237f040d2f44a5 to your computer and use it in GitHub Desktop.
Save TomoG29/dfd6d7f8df47ddee2e237f040d2f44a5 to your computer and use it in GitHub Desktop.
from selenium import webdriver
from time import sleep
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
driver_path = ChromeDriverManager().install()
driver = webdriver.Chrome(service=Service(executable_path=driver_path))
driver.get("開きたいページのURL")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment