Пікірлер
@syedsohaibaliraza3452
@syedsohaibaliraza3452 12 күн бұрын
Thanks a lot, its very helful video and to the point . great one
@TechiePraveen
@TechiePraveen 5 күн бұрын
Thank you 🙂
@arun53413
@arun53413 Ай бұрын
Good Bro. Keep it up
@TechiePraveen
@TechiePraveen 24 күн бұрын
I will try my best. Thank you 🙂
@rohanpardeshi7252
@rohanpardeshi7252 Ай бұрын
hello sir,,, i saw your videos its really help me out,, thank you so much
@TechiePraveen
@TechiePraveen Ай бұрын
Welcome Rohan 🙂
@tanushrimukherjee2762
@tanushrimukherjee2762 Ай бұрын
I am not able to get the List , pls help me with the same, my code is - WebDriver driver=new ChromeDriver(options); driver.get(url); driver.findElement(By.name(seachBox)).sendKeys("Shoes"); Thread.sleep(5000); List<WebElement> searchSuggestion=driver.findElements(By.xpath("//li[@class='AgOexi']")); for(int i=0; i<searchSuggestion.size()-1;i++) { System.out.println(searchSuggestion.get(i).getText()); }
@SowbaranikaG
@SowbaranikaG Ай бұрын
Thanks a lot , by following ur teaching I made my own UI , with video and description!! Thankyou so so so much ! Great work!
@TechiePraveen
@TechiePraveen Ай бұрын
Welcome 🙂
@sushantamandal7320
@sushantamandal7320 Ай бұрын
I am not able to inspect the autosuggestion box. Every time I am trying to inspect the box is disappearing. What to do in this scenarios?
@TechiePraveen
@TechiePraveen Ай бұрын
Hi sushant, thank you for commenting, you can check my Flipkart autosuggestion video, there i have explained how to locate these disappearing element. Thank you 🙂
@AmanSingh-uc4lp
@AmanSingh-uc4lp Ай бұрын
Great work the way of speaking and explaining is excellent 👍👍
@TechiePraveen
@TechiePraveen Ай бұрын
Thank you Aman 🙂
@naveenchandra1298
@naveenchandra1298 Ай бұрын
Thank you so much for this lecture. It's a very nice lecture on the tkinter. It's very descriptive but the problem is sound is low and screen size is short.
@TechiePraveen
@TechiePraveen Ай бұрын
Thanks for commenting Naveen. I will take care for the mic and voice issue next time. And sorry for the inconvenience caused.
@dilipmevada
@dilipmevada Ай бұрын
Best explanation on YAML file that I have seen so far.
@TechiePraveen
@TechiePraveen Ай бұрын
Thank you 🙂
@DarshanBisane
@DarshanBisane Ай бұрын
Sir i am fallowed all steps but still safari driver is not opening. Below error is showing Error occurred during initialization of boot layer java.lang.module.FindException: Unable to derive module descriptor for C:\Users\Admin\Downloads\selenium-java-4.21.0\byte-buddy-1.14.15-sources.jar Caused by: java.lang.IllegalArgumentException: byte.buddy: Invalid module name: 'byte' is not a Java identifier
@buttheadCrane
@buttheadCrane 2 ай бұрын
english mother....er, do you speak it?!
@aadityav89
@aadityav89 2 ай бұрын
Nice 👍
@gokulchoudharyyogguru3108
@gokulchoudharyyogguru3108 2 ай бұрын
Sir client se performance testing mai kiya kiya requirment lete hai hum or client ko report mai kiya kiya send karte hai is bare mai bataiye na aap please urgently?
@TechiePraveen
@TechiePraveen 2 ай бұрын
Hi Gokul, is weekend isi par video aayegi. So, please stay tuned.
@mohammadsalman5740
@mohammadsalman5740 3 ай бұрын
After removing the window from blur part , auto suggestion screen still disappear when we are going to inspect
@HimanshuGilhare-ne2in
@HimanshuGilhare-ne2in 3 ай бұрын
very informative
@abhisaini8125
@abhisaini8125 3 ай бұрын
Voice is not clear improve microphone
@harshitarohilla438
@harshitarohilla438 3 ай бұрын
Can you please tell how to integerate the Google sheets to derive the data in cypress. I used the Google sheets api but it gives me node modules error
@majidgreatbowlermirza3609
@majidgreatbowlermirza3609 3 ай бұрын
Nice
@majidgreatbowlermirza3609
@majidgreatbowlermirza3609 3 ай бұрын
Nice
@HimanshuGilhare-ne2in
@HimanshuGilhare-ne2in 3 ай бұрын
very informative video
@HimanshuGilhare-ne2in
@HimanshuGilhare-ne2in 3 ай бұрын
very informative video
@MubashirIjaz-fl3lg
@MubashirIjaz-fl3lg 3 ай бұрын
Could you please demonstrate or provide a video on Data Driven Testing, specifically on how to perform login functionalities with a CSV file using Cypress?
@Pra_bhuriya
@Pra_bhuriya 3 ай бұрын
Thanks 👍
@TechiePraveen
@TechiePraveen 3 ай бұрын
Welcome 🙂
@Gulluandfriends11
@Gulluandfriends11 3 ай бұрын
Sir ek video use case pr bna do
@user-pw3se8jq4j
@user-pw3se8jq4j 3 ай бұрын
sir do you have automation codes to practice
@ch-ss
@ch-ss 4 ай бұрын
well explained !
@tanujavaLearner
@tanujavaLearner 4 ай бұрын
I am not able to print all the options as displayed in the list ... Pls suggest. Same thing i tried for google it works but for flipkart unable to print all options.
@TechiePraveen
@TechiePraveen 4 ай бұрын
Hi Tanu, sorry for the late reply. you can print the length of list to check whether you are able to get the correct list or not..
@tanushrimukherjee2762
@tanushrimukherjee2762 Ай бұрын
@@TechiePraveen Yes for flipkart trying again but unable to print the options. My Code is here - WebDriver driver=new ChromeDriver(); driver.get(url); driver.findElement(By.name(seachBox)).sendKeys("Shoes"); Thread.sleep(5000); List<WebElement> searchSuggestion=driver.findElements(By.xpath("//div[@class='s-suggestion-container']")); for(int i=0; i<searchSuggestion.size()-1;i++) { System.out.println(searchSuggestion.get(i).getText()); } } Pls suggest
@deepakrathor7467
@deepakrathor7467 4 ай бұрын
21 last video hai or bhi video hai kon kon se hai pls Upload
@yadavsarita-qg2gs
@yadavsarita-qg2gs 4 ай бұрын
thanks a lot it's really meaningful tutorial.
@TechiePraveen
@TechiePraveen 4 ай бұрын
welcome 🙂
@muhammadzafar2470
@muhammadzafar2470 5 ай бұрын
very helpful tutorial. thanks
@TechiePraveen
@TechiePraveen 5 ай бұрын
Thank you 🙂
@bhratichodvadiya8413
@bhratichodvadiya8413 5 ай бұрын
drag and drop else condition wrong item show plz tutorial in flutter
@profferofficial2162
@profferofficial2162 5 ай бұрын
thanks..great experience and learning
@TechiePraveen
@TechiePraveen 5 ай бұрын
Thank you 🙂
@shreyaschavan7976
@shreyaschavan7976 5 ай бұрын
thanxx a lot very useful tutorial
@TechiePraveen
@TechiePraveen 4 ай бұрын
Welcome 🙂
@trendlines7098
@trendlines7098 5 ай бұрын
Great efforts, thank you buddy. keep it up
@dikshasingh2011
@dikshasingh2011 5 ай бұрын
Nicely explained for beginners 👏
@TechiePraveen
@TechiePraveen 2 ай бұрын
Thank you 🙂
@anilbarad1856
@anilbarad1856 5 ай бұрын
It's nice but , explanation is not clear, as a beginner i am still confused what is ourpo of docker, instead of this you should create one project in any programing language and need to create docker image of that particular project, i am Stopping playlist here , looking for playlist with best explanation, thank you.
@stream.abhimanyu
@stream.abhimanyu 6 ай бұрын
How to transfer a file from windows machine to the ec2 instance using pem file, step wise
@Imran_khan702
@Imran_khan702 6 ай бұрын
sir btaye ga k ksy API automation sekh skty koi source bteya ga
@sameershedge3005
@sameershedge3005 6 ай бұрын
sir how to get output in visual studio i am using vs code
@user-vk4hs2qd1u
@user-vk4hs2qd1u 6 ай бұрын
Fantastic!!
@sureshpal5569
@sureshpal5569 6 ай бұрын
great video , can you share all definition
@VikasGupta-xg3uv
@VikasGupta-xg3uv 7 ай бұрын
valuable video with simple explanation, Learning from your playlist. Great work brother
@funnychannel9314
@funnychannel9314 7 ай бұрын
Best video sir plz make more on postman it's request🎉
@Anoopkumar-xj9bw
@Anoopkumar-xj9bw 7 ай бұрын
Valuable information
@haisamkhurshid1294
@haisamkhurshid1294 7 ай бұрын
Please give your detail to contact you.I am building a flutter app where dynamic data and list charts is getting involved and i am getting confused in that.Please help
@vishalmevada1919
@vishalmevada1919 7 ай бұрын
Database testing related tutorial please.
@ShivamSharma-tx1oz
@ShivamSharma-tx1oz 7 ай бұрын
Link ?
@TechiePraveen
@TechiePraveen 7 ай бұрын
bit.ly/42bbMvh
@ShivamSharma-tx1oz
@ShivamSharma-tx1oz 7 ай бұрын
Interested
@pradeepchandra2232
@pradeepchandra2232 7 ай бұрын
it was very helpful
@janhvirananaware7265
@janhvirananaware7265 7 ай бұрын
Thank you so much I was searching for this only... and you explain so nicely , from scratch . You are amazing... I request you for more videos like this .