#2 Python Selenium webdriver tutorial | Selenium tutorial for beginners | Selenium python tutorial

preview_player
Показать описание

In this Selenium tutorial for beginners, we will see how to write a simple Python program and import the selenium package to automate the web browser.

We will also see how to use the X-path of the play button on the Soundcloud webpage to play the songs programmatically.

Finally, we will also see how to set the headless option in Selenium for Chrome and play the songs without showing the browser window on your screen.

✅ OTHER LINKS AND RESOURCES
=============================
🔴 Subscribe to this channel

🔴 YouTube Channel

🔴 Python for Beginner Playlist

🔴 My Facebook Page

🔴 Follow me on Twitter

🔴 Follow me on Instagram

🔴 Connect with me on LinkedIn

#PythonSeleniumWebdriver #SeleniumTutorial #SeleniumForBeginners
Рекомендации по теме
Комментарии
Автор

Thanks for the video. When I try to login using selenium it says you are a robot. Do you know how can we bypass that?

listenandgrow
Автор

hey probably how can i login to soundcloud using selenium please coz it can't identify the email field

cyybot
Автор

On trying this code on my python console, it shows the error : "element not interactable"

My code:

import time
from selenium import webdriver

driver = webdriver.Chrome()

time.sleep(3)

Also, I just saw one play button for the playlist of the top 50 songs. Clicking on that manually started playing those 50 songs for me.

xxcosmicgamingxx