RPi-Distro / chromium-browser

30 stars 7 forks source link

Audio renderer error while running youtube through selenium #24

Closed sijumanuel closed 2 years ago

sijumanuel commented 2 years ago

Audio renderer error :Please restart your computer while trying to open youtube using selenium. It was working fine till last week. Please find the code snippet below

service = Service("/usr/lib/chromium-browser/chromedriver") driver=webdriver.Chrome(service=service) time.sleep(2) driver.get('https://youtu.be/YUvVmN99sE4')

XECDesign commented 2 years ago

Not seeing an issue with the following example:

#!/usr/bin/python3

from selenium import webdriver
from selenium.webdriver.chrome.service import Service
import time

service = Service("/usr/lib/chromium-browser/chromedriver")
driver=webdriver.Chrome(service=service)
time.sleep(2)
driver.get('https://youtu.be/yWRvE-DcX64')

More information needed to reproduce the issue.