Really love your work Federico. Hope you continue to make these really good videos. I also love the fact that you make videos on things that you feel are good rather that focusing on some niche area like android dev. I really like the variety of content. Thanks a lot
Really happy you enjoyed! I'm really looking forward to bringing a lot with Python, of course I will also continue the learning python series, but I can't wait for the ML!
Thanks for the video. Is it possible to run the login without opening the browser? My use case is logging in, downloading a file and landing it on my local directory (using import OS and requests). I believe we can use the "headless" argument for Chrome but wondering if that is the only solution (or headless just a hack). I know we can run the action silently using BeautifulSoup. Just learning Selenium here. Thanks
can we do like if we give credentials it will automatically send to the homepage or profile without explicitly writing the URL in the code, like happens in web browser
thank you for the video. just one question : could you suggest me some ideas about how to automate running python file at a particular time let's say 8:00 in the morning?
I am getting the below error. Not able to open the url in first place :( ConnectionRefusedError: [WinError 10061] No connection could be made because the target machine actively refused it
Hey thank you for the video! Just a quick note, driver.find_element(By.NAME, "name").send_keys(var) ---> it became like this in the new selenium driver.find_element(By.NAME, "password").send_keys(var) driver.find_element(By.CSS_SELECTOR, 'input[type="submit" i]').click()
@@jameswhite7637 It just says that it's not able to locate the button element, so try to select it by something else maybe or check other ways to select the elements?
For name part you are using element_by_name but what if that name string is a 2 word string with a space like "string name" how can we write that after "by_"
I don't know if you are going to see this, great vid by the way. I'm just getting started with selenium and I have encountered a problem. When I do these steps, the google login screen/youtube login screen appears and i don't know to get rid of that. It pops up and doesn't register any of my commands.
good my problem is that in the web to which I want to access ... it has 3 buttons before being able to loggear. 1st button (login) 2do button (select facebook or gmail) load my data 3rd button send data How do I click on the previous buttons to get to the registration form?
@@Indently Is there an alternative that you would recommend for platforms like that? Something that is not visible as automation software to the web sites
@@joeschmoe435 I mean unless you are working with their official apis, I suggest you just use the "remember username & password fields". These companies are very strict, and I personally wouldn't dare to do any tests on them without expecting my account to be banned.
Looking for more good Python content? Check out: th-cam.com/channels/TNyF3KFTXmME0byuTRwfZA.html
Really love your work Federico. Hope you continue to make these really good videos. I also love the fact that you make videos on things that you feel are good rather that focusing on some niche area like android dev. I really like the variety of content. Thanks a lot
Really glad to hear that! Thanks for the support :)
@@Indentlywithout browser possible or not?
You wrote Hello World! 4 days ago and now you writing Selenium. I think the next video will be about ML. Thank You!
Really happy you enjoyed! I'm really looking forward to bringing a lot with Python, of course I will also continue the learning python series, but I can't wait for the ML!
lol
This was an excellent demonstration on how to use this particular application. Thank you so much
How to make Google Chrome dont know that the browser is controlled by a software ?
Is it possible
@@sultanhanga I think so lol, literally forgot about it. It's been 3 years :)
😂
Undeteced chromedriver v2
Thanks this really helped, I managed to easily automate a regular download of files from website and then made headless and ran from cron. Many Thanks
Very useful video mate. Keep growing
Thanks for the video. Is it possible to run the login without opening the browser? My use case is logging in, downloading a file and landing it on my local directory (using import OS and requests). I believe we can use the "headless" argument for Chrome but wondering if that is the only solution (or headless just a hack). I know we can run the action silently using BeautifulSoup. Just learning Selenium here. Thanks
How can I tell my Linux based system that it should run this python script every 24h ?
can we do like if we give credentials it will automatically send to the homepage or profile without explicitly writing the URL in the code, like happens in web browser
thank you for the video. just one question : could you suggest me some ideas about how to automate running python file at a particular time let's say 8:00 in the morning?
did u figure it out?
I am getting the below error. Not able to open the url in first place :(
ConnectionRefusedError: [WinError 10061] No connection could be made because the target machine actively refused it
hi, I am using javascript and i dont have the id eather, do you maybe know how it works with javascript?
Hey thank you for the video!
Just a quick note,
driver.find_element(By.NAME, "name").send_keys(var) ---> it became like this in the new selenium
driver.find_element(By.NAME, "password").send_keys(var)
driver.find_element(By.CSS_SELECTOR, 'input[type="submit" i]').click()
your comment got mine going, except for the button click. is there something I could be doing wrong?
i receive this
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.NoSuchElementException: Message: Unable to locate element: input[type="submit" i]
Stacktrace:
RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8
WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:180:5
NoSuchElementError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:392:5
element.find/
@@jameswhite7637
It just says that it's not able to locate the button element, so try to select it by something else maybe or check other ways to select the elements?
What is the difference between the Selenium and SelectorsHub?
Greetings, I would like to know how I can do autologin in Python, it is to do it from a program that runs on Windows.
is there a way to run this on Google cloud Platform? I would guess that we just need to reference Selenium in a bit of a different way.
I want to test a website which is written in PHP, will it be an issue if I test it using python like you did in the video?
thanks bro you helped me today
one thing try except can you teach with the scraping part its needed to never make process get stopped.
i cannot see find element by id or name in drop down list
very good tutorial, thank you!
why can't I get it to work... It's not auto filling the inputs
For name part you are using element_by_name but what if that name string is a 2 word string with a space like "string name" how can we write that after "by_"
driver.find.element(By.name, "name_here")
Send_key not working then
I am getting an error “chromedriver 2” can’t be opened because Apple cannot check it for malicious software.
This is because Apple cannot check it for malicious software.
what is this interface called ?
when i download python i only get a cmd like comand window
PyCharm
i want to login in multiple website , please help
I don't know if you are going to see this, great vid by the way. I'm just getting started with selenium and I have encountered a problem. When I do these steps, the google login screen/youtube login screen appears and i don't know to get rid of that. It pops up and doesn't register any of my commands.
Hi Daniel, you're going to have to create some additional commands in Python to take care of that.
@@Indently i understand. The idea is that I don't even know what to search or how should the code look for that sign up screen to disappear:)
www.google.com/search?client=firefox-b-d&q=selenium+google+popup
How to do this on VSCode
Best tutorial ever !!!!!
Bro what is the app you are using when coding python?
PyCharm
run your program 50 times in a row, and see that all computer resources are occupied
How i can let the script automatically complete hcapcha?
It's simple, you just need to make it click on the right answers and make it click on "I'm not a robot".
@@Indently Images shown are random each time so i need to implement a solvingapi like the one from capmonster but idk how to do it.
Please show me
Login on mobile phone
what if there is a captcha
You can use a headless browser interface with some code, look it up
how do I login to multiple accounts
You can use Selenium
@@Indently thanks for the reply can you make video of please aim on my knees
google, youtube don't work x.x
it was very helpful
You sound like David. ^ ^
good my problem is that in the web to which I want to access ... it has 3 buttons before being able to loggear.
1st button (login)
2do button (select facebook or gmail)
load my data
3rd button send data
How do I click on the previous buttons to get to the registration form?
Hey Maria, I don't recommend this for either Google or Facebook, they will eventually ban your account if you insist on using this for that.
@@Indently Is there an alternative that you would recommend for platforms like that? Something that is not visible as automation software to the web sites
@@joeschmoe435 I mean unless you are working with their official apis, I suggest you just use the "remember username & password fields".
These companies are very strict, and I personally wouldn't dare to do any tests on them without expecting my account to be banned.
very helpful
Nice vedio but we have timer 20 sec before login how we will create program
thanks! this was helpful!
bit deprecated but very good :)
Thank you so much and #ForzaFerrari ♥
This is really awesome
Thank you a lot👍
thanks a lot! 💖💖
thank you !
Very useful
very helpful :D thx
Grazzie ragazzo