Please use the below link for the selenium videos playlist: 🔗 bit.ly/2FyKvxj
@soundharyashivaji50814 жыл бұрын
Clear Explanation .
@HYRTutorials4 жыл бұрын
Keep watching
@Utub-qc2cz Жыл бұрын
Any idea how to increase default shutdownTimeout for firefox ? by default it is set to 60 seconds.
@HYRTutorials Жыл бұрын
Why you are dealing with the shutdown timeout buddy?
@Utub-qc2cz Жыл бұрын
@@HYRTutorials Thank you for your replay, I got rid of this error at last. Would you share your experience with parallel selenium tests on Selenium Grid ?
@vinoth10122 жыл бұрын
Does the pageload timeout gets applied only when entire dom / page is refreshed??
@HYRTutorials2 жыл бұрын
Yes buddy it's only applied when page is refreshed or loaded
@user1994gms3 жыл бұрын
I have a requirement: I run multiple testcases. Timeout exception is thrown during some random testcase performing driver.get("") Here as timeout occurred, I need code to close the driver But where to handle this part to close the driver??
@HYRTutorials3 жыл бұрын
You can handle this using exception handling
@rachitham1469 Жыл бұрын
Hi Sir, I am getting read timeout exception. how to handle it ?
@HYRTutorials Жыл бұрын
Send me the screenshots on hyadagirireddytutorials@gmail.com
@user1994gms3 жыл бұрын
in simple terms, after 8:12 in your video, driver should quit.. how to acheive this
@HYRTutorials3 жыл бұрын
If you wish to close the driver then you can use driver.quit() method
@user1994gms3 жыл бұрын
@@HYRTutorials yes but when timeout occurred the code is unrechable. thats the reason why the tab is not closed here 8:10
@HYRTutorials3 жыл бұрын
Yes thats obvious. Whenever an exception is thrown immediately the program execution will be stopped (if the exception is not handled by try catch)
@HYRTutorials3 жыл бұрын
There are two ways in which you can resolve this issue: 1. Enclose your entire code in try catch block. by doing this when the exception occurs it comes to catch block and you can write driver.quit() statement there which will close the browser
@HYRTutorials3 жыл бұрын
2. If you are using the testng framework then you can handle this browser closing part in aftertest annotation
@rajendramahapatra32934 жыл бұрын
Driver session doesn’t respond after pageloadtimeout exception. How to handle this in catch section?