Mastering Web Automation with Python and Selenium: A Step-by-Step Guide Course Lecture 2

preview_player
Показать описание
This lecture teaches viewers how to automate different keys on the keyboard using selenium and also creates a YouTube Test Automation Script.
Alternative Titles:
Automating the Web with Selenium and Python: A Comprehensive Guide"
"Web Automation Made Easy: A Tutorial on Selenium and Python"
"Mastering Web Automation with Python and Selenium: A Step-by-Step Guide"
"Python Web Automation: A Beginner's Guide to Selenium"
"Efficient Web Automation with Selenium and Python: Tips and Tricks"
"Web Automation Simplified: A Tutorial on Selenium and Python"
"Automating Web Tasks with Python and Selenium: A Comprehensive Tutorial"
"Selenium and Python Web Automation: A Complete Guide for Beginners"
"Web Automation with Python and Selenium: A Practical Tutorial"
"Streamlining Web Tasks with Python and Selenium: A Beginner's Guide".

Thanks For Watching ! ! !
✌️ Peace Out ✌️
Рекомендации по теме
Комментарии
Автор

I love your video, question. i had a bit more struggles, your input is here at my place a text area, and i first head a screen to decline the logon, but it's working now, thanks. I hope in the future you can make more videos about the posibilities of selenium :)

RonaldPostelmans
Автор

Hello,
I am looking for a way to automate the process of clicking on specific links to edit eBay listings. When bulk uploading listings from a spreadsheet, I currently upload 10 listings at a time, then I pull up the recently added listing to add the photos then resubmit as a complete listing. The process is fairly fast but the order of the uploaded listings is not in the order matching the spreadsheet and the photos which do match. So, I currently go through the photos and and open the listing in a new TAB that matches the order of photos to easily drag the photo group into the listings photo upload area. Then hit the END KEY to bring to the bottom to have ready for submitting the listing.

What I need is a way to search the page for specific URLs, then click on a corresponding EDIT button URL to the found URL, from a list of 10-20 item titles from a spreadsheet in order top down.

Is this possible?

I could send Screen shots but cant do that here I guess.

Thanks,
Mike G

Dreamlight
Автор

Thanks for this video, my previous post was about your first video about selenium sorry for the mixup.
With youtube it is a bit different, like google i have to first decline a screen which works with: Click_on_decline = driver.find_element("xpath", '/html/body/ytd-app/ytd-consent-bump-v2-lightbox/tp-yt-paper-dialog/div[4]/div[2]/div[6]/div[1]/ytd-button-renderer[1]/yt-button-shape/button/yt-touch-feedback-shape/div/div[2]').click()
After that i get on the youtube site, but i use

searchbox = driver.find_element("xpath", '/html/body/ytd-app/div[1]/div/ytd-masthead/div[4]/div[2]/ytd-searchbox/form/div[1]/div[1]/div/div[2]/input')
searchbox = driver.find_element(By.ID, 'search')
searchbox.send_keys('Python course')


Weirdly enough it does not work, i have to manually hover over the search bar, then autmaticly 'Python course' is filled in by selenium and then a return is given. But if i don't hover manually over the searchbar it does nothing. Have you any idea how i can fix this? error: Message: element not interactable

RonaldPostelmans