File size: 1,392 Bytes
9e7c01a 10e999f 472154b 10e999f 9e7c01a 10e999f 9e7c01a 10e999f 9e7c01a 10e999f 9e7c01a 10e999f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
# Set Chrome to run in headless mode to save memory
chrome_options = Options()
chrome_options.add_argument("--headless") # Headless mode
chrome_options.add_argument("--no-sandbox") # Necessary for running in some environments
chrome_options.add_argument("--disable-dev-shm-usage") # Overcome limited resource problems
# Initialize the Chrome WebDriver
driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=chrome_options)
# Go to the provided URL
url = "https://genyoutube.online/url=https://www.youtube.com/watch?v=-2RAq5o5pwc&list=RD-2RAq5o5pwc&start_radio=1"
driver.get(url)
# Print the page title to verify success
print(driver.title)
# Use WebDriverWait to wait for the element to be present
try:
my_tab_content = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.ID, "myTabContent"))
)
print(my_tab_content.text) # Print the text content
except Exception as e:
print("Error locating the element:", e)
# Close the browser session
driver.quit()
|