xxxxxxxxxx
#Fork this Repl and change the code as you wish:-
"""
https://replit.com/@AppleJuiceFan/Python-Selenium-Tutorial
"""
xxxxxxxxxx
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument('--disable-dev-shm-usage')
driver = webdriver.Chrome(options=chrome_options)
driver.get("https://youtube.com")