thanks a lot for this video, but i faced a line error in implicitwait(The method implicitlyWait(long, TimeUnit) from the type WebDriver.Timeouts is deprecated),, please give the solution
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); the above statement is throwing deprecated error in selenium 4.0.15, use the following instead: driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(10));
I got an error that is- "The method implicitlyWait(long, TimeUnit) from the type WebDriver.Timeouts is deprecated" ...i write same program as you....will u plz give solution? and give reason it will solve my doutes.
Hi Sir @softwaretestingmentor, I am seeing your Selenium WebDriver Tutorials which are carrying a lot more information with practical examples. I really like your way of teaching, And I am a subscriber too. You are putting so many efforts in making these videos. We are Very thankful for that. But one thing for your note is, you are using "you know" words very frequently(some times two to three times in a single sentence) in any video, which is discontinuing or annoying your flow of teaching a lot. My observation. :)
english isn't our mother tongue 'you know', so please bear with us 😄 also, 1st letter of any word starts with an upper case only after a period ('And I am a subscriber too'. here a of and should be in lower case), please check your own flaws before pointing out others'. Thanks.
🔸FREE Training's at training.rcvacademy.com 🔔SUBSCRIBE to CHANNEL: bit.ly/2YGU6JM
thanks a lot for this video, but i faced a line error in implicitwait(The method implicitlyWait(long, TimeUnit) from the type WebDriver.Timeouts is deprecated),, please give the solution
use : driver.manage().timeouts().implicitlyWait((Duration.ofSeconds(10)));
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
the above statement is throwing deprecated error in selenium 4.0.15, use the following instead:
driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(10));
i confirm, thank you
I got an error that is- "The method implicitlyWait(long, TimeUnit) from the type WebDriver.Timeouts is deprecated" ...i write same
program as you....will u plz give solution? and give reason it will solve my doutes.
Use - driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(2));
@@rahul141141 Thank u👍
Hi Sir @softwaretestingmentor, I am seeing your Selenium WebDriver Tutorials which are carrying a lot more information with practical examples. I really like your way of teaching, And I am a subscriber too. You are putting so many efforts in making these videos. We are Very thankful for that. But one thing for your note is, you are using "you know" words very frequently(some times two to three times in a single sentence) in any video, which is discontinuing or annoying your flow of teaching a lot. My observation. :)
english isn't our mother tongue 'you know', so please bear with us 😄
also, 1st letter of any word starts with an upper case only after a period ('And I am a subscriber too'. here a of and should be in lower case), please check your own flaws before pointing out others'. Thanks.