Advertisement
gobees81

seleniumcode

Oct 9th, 2022
1,064
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. from selenium import webdriver
  2. from selenium.webdriver.chrome.service import Service
  3. from webdriver_manager.chrome import ChromeDriverManager
  4. from webdriver_manager.core.utils import ChromeType
  5.  
  6. driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()))
  7. url="https://untapped.com"
  8. driver.get(url)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement