Please use the below link for the selenium videos playlist: 🔗 bit.ly/2FyKvxj
@muthukumaran42672 жыл бұрын
Thank you bro.. this is my interview question.. but i don't know about this concept. Now only I learned.. thanks a very lot.
@HYRTutorials2 жыл бұрын
That's why we should learn each and every small point buddy. We don't know what interviewer might ask.
@C.Sakthivignesh Жыл бұрын
Thank you so much sir for made this video.
@HYRTutorials Жыл бұрын
Happy learning buddy 😊
@milindhase72272 жыл бұрын
Thanks sir very good explain.
@HYRTutorials2 жыл бұрын
Thanks buddy 😊
@balakrishna57862 жыл бұрын
Thank you Bro!
@HYRTutorials2 жыл бұрын
Welcome buddy 😊
@nikhilpande7622 жыл бұрын
Thank you
@HYRTutorials Жыл бұрын
Happy learning buddy 😊
@veereshtiranga690826 күн бұрын
Why can't we perform click operation by selecting that forward or backward elements? Like for ex clicking on that back button using any attributes
@jamadagnithandrangi67152 жыл бұрын
Hi Brother, Very well explained the concept. I Getting the error when giving "Thread.sleep(2000);". How to resolve it ?
@HYRTutorials2 жыл бұрын
What error you are getting buddy?
@jamadagnithandrangi67152 жыл бұрын
Resolved the error. Thank you
@siddharthjain7232 жыл бұрын
Hii, I want to navigate to the settings of the browser, how can I open settings using selenium?
@HYRTutorials2 жыл бұрын
When you open the settings of any browser, you will get something in the url, so copy that and open a new tab using selenium then switch to that window and navigate to that text.
@saiprathyusha9902 Жыл бұрын
Sir., R u providing any online training.
@HYRTutorials Жыл бұрын
Currently I'm not taking any classes buddy
@debasismohanty2214 жыл бұрын
Hi I need a help. I have installed selenium by using pip install selenium to import webdriver. Downloaded web driver also. But after that I am not getting get(),open() and find_by() functions. But I am getting it when I simply trying import webbrowser ? Any suggestions will be much appreciated 👍
@HYRTutorials4 жыл бұрын
In any installation mode, it will just download the required files into our system but it will not directly reference them in the scripts. to use webdriver in your scripts you have to use import statements on the starting of your script as below: from selenium import webdriver
@dharaniv58593 жыл бұрын
Hi , can show how to create a shortcut in selenium, for navigating home page to some other page in the same application...
@HYRTutorials3 жыл бұрын
If you would like to navigate to a URL then you can use the navigation methods available by passing the target URL. In case if you wish to navigate to other pages inside the same application then we need to create a utility function that can do that for us. So this logic is completely different from application to application because the menu control might be different in each application.
@factsofallahal-shaheedserv78163 жыл бұрын
👍
@HYRTutorials3 жыл бұрын
Thankyou
@Mrs.SharonPintoMendes Жыл бұрын
But this doesn't work in case if userr has navigated to a web page, logged into the application using login and password and an otp pop up occurs for 2FA, then user again navigates to another web page gmail, loggs in, reads the otp and again return back to previous web page and pastes the otp. I guess there is no automation for 2 FA like this, either user has to enter otp manually or needs to disable 2FA in UAT by telling the developer🤷♀️
@HYRTutorials Жыл бұрын
Yes buddy. You have two options here: 1. Disable the 2FA for test environments 2. Use the API calls for retrieving the otp from your email and use it in your website using automation itself. In this case you don't need to navigate back and forth.
@abhishekkumar-jw6rl2 жыл бұрын
hi...what is code to navigate back twice..?
@HYRTutorials2 жыл бұрын
You have to use back method twice buddy
@abhishekkumar-jw6rl2 жыл бұрын
@@HYRTutorials thanks buddy
@khetankhobragade713 жыл бұрын
I get errors ... So how to solve errors while coding .. Hope you should make a vedio on .. Errors for beginners
@HYRTutorials3 жыл бұрын
What is the error you are getting? It's difficult to create a video on errors because we all get different errors ryt
@bharathkumar1419 Жыл бұрын
how can we inspect in leftarrow and rightarrow and refreshbutton tell bro ,, as soon as possible reply bro.. thank u bro
@HYRTutorials Жыл бұрын
You can't inspect those buttons buddy. That's why these are handled differently. If you watch this video you can understand that buddy