This is very very useful for angular or react applications. I faced this issue lot of times, I used to do it with f8 key but now this is the coolest way you taught us. Thanks a lot man!
Thanks a lot Naveen for sharing this. These are components which goes off when focus is lost. so when we switch to developer tools , the focus is lost and the component goes off. In developer tools , inspect tab click cmd+shift+p(short cut will be different in windows OS) Run command focused Select emulate a focused page option now you will see the dropdown and can inspect the elements
@@nayanagopinath669 there is dropdown in my application to select country and titles which get disappears while trying to get xpath, so as per the video i tried removing blur property from event listener but still i was not able to inspect. I tried your approach and it worked. Thanks!
You are really god gift for all the QA people who is already in industry and people who are looking for job, I donot think we need to apply our brains while desgining framework or designing the scripts :) , simply coming to your channel and refer the videos and getting knowledge. My Request , can you please do a video on Common/reusable methods in selenium webdriver which can be accessed across the frame work, I found Common methods for Webdriverwait, type, click . Can you please do a common methods for Calender , Bootstrap dropdowns, webtables, Search functionalitys , Auto Suggestions, Take screenshots ...I hope you can do it for your students :) because it is cakewalk for you :)
It may be small thing and this willl very useful tips to automation community..thanks naveen It will really helpful if you share videos on all or major expected conditions(Webdriverwait) like staleness etc. in selenium when to use
Thanks a lot Naveen for sharing this. We can use the below script from browser dev tool console as an alternative for the same concept setTimeout(function(){debugger;}, 5000)
Please open your browser dev console paste the script and hit enter. After 5 seconds the ui will freeze so that with the help of the inspector tool you can start inspecting the desired elements
@@adityaphadnis1551 please follow below steps 1. Open your browser dev tool 2. Select the console tab 3. Paste the above code and hit enter to execute. The browser will freeze after the mentioned time period
Hi Naveen, thanks for sharing this. But it is not working in my case, I deleted the blur property as well but the moment I tried to inspect the element, the same has been selected. Please let me know if you know some other way
Hello sir, your videos are really very helpful thank you for posting such an useful content. And I really want you create one video on, when user Zoom on image at that time cursor symbol gets change and capture the element. is that possible to do???
Hi I am also facing the same issue of hidden value i cant identify the element .Like you said in the video delete 3 items from blur if it is not then focusout that too is not present can you suggest something else
Hi Naveen can you help to select from that more dropdown in flipkart I am giving the xpath right but elements list is not getting any entry size is still 0.
Hi Naveen, Hope you are doing good, This trike is very useful and I tried to use it but it's not working in my application can you please share any workaround it
In my case, i could not able to find BLUR property itself in the Event Listener and its not at all visible. Please suggest alternative solution for this.
Hi naveen..have doubt in inspect the child category of flipkart..my interview question ..open flipcart- click any one category-find out xpath of child category...little bit difficult to find out the xpath of this..can you guide me how to take xpath for this?
@Naveen AutomationLabs Another trick is when the list appeared, press tab key manually to reach inspect button and hit enter key. You will find element source code without disabling blur property for those objects....
This won't work if you have many elements on the page like Flipkart or Amazon. In fact if you try the same on Flipkart and moving manually to inspect icon and press enter. List is getting disappeared.
Hi Naveen, thanks your videos are really helpful! I have a query, in which when I am clicking on a button it is giving me one id, then have to wait overnight, and then next day login on the other URL where this id will have few account numbers and other data which I have to verfiy. but waiting overnight is must for data to generate , How this can be managed using Selenium ?
Hi Naveen, Selenium is not able to automate the pages having intermediate redirection pages. Page 1> Page2> Page 3 Selenium is able to go up to page 2 URL only. What to do, please help.
Hi Naveen, In in my react J web application, i could not able to find BLUR property itself in the Event Listener and its not at all visible. Please suggest alternative solution for this.
I need same question for Appium. I need to get data from drop-down of 10 values. I used Select class. But, it get the text of only visible text, it is not getting last 2 values because of hidden by scrolling. Please give me solution for Appium
Hi Naveen if u have videos regarding browser authentication application to find broken links and how to add cookies in the HttpURLConnection pls let me know
For those who cannot find ‘blur’ event, alternatively you can remove ones in ‘focusout’
Thanks Bek, most useful comment. I was confused as I don't have blur in my Event Listerners. I removed it from 'focusout'
Thanks....😊
You really saved me, dear! I've tried so many options, but they didn't work in my case.
Thanks a lot, saved my day
Thanks bek, very useful for me as well
This is very very useful for angular or react applications. I faced this issue lot of times, I used to do it with f8 key but now this is the coolest way you taught us. Thanks a lot man!
You are a great boss... Whenever I face issue I feel you knew in advance and you made on exactly same topic... Respect 🤜🤛
I was actually facing this issue and that too yesterday and today ur solution made my day....thank you so much sir
One of my interview question. Thanks for the useful video .Thanks a ton from USA
You have made solution for every automation issue Thanks @naveen
Thank you ! very useful. As a self-study, I really appreciate
Thanks a lot, Naveen I have been facing this issue for a long time and you gave me a solution. Hats off to you👒👒.
Thanks a lot Naveen for sharing this.
These are components which goes off when focus is lost. so when we switch to developer tools , the focus is lost and the component goes off.
In developer tools , inspect tab
click cmd+shift+p(short cut will be different in windows OS)
Run command focused
Select emulate a focused page option
now you will see the dropdown and can inspect the elements
This helps ..removing blur is not working for me.
@@swapnilpatil2189 can you pls eloborate the use case
@@nayanagopinath669 there is dropdown in my application to select country and titles which get disappears while trying to get xpath, so as per the video i tried removing blur property from event listener but still i was not able to inspect. I tried your approach and it worked. Thanks!
Ok understood..glad that this tip helped and worked for you.
Thanks for the trick it worked
Your brain is like an alien Naveen. This will help a lot
it's like magic to know this trick👏👏👏 really helpful... thank you Naveen😊
Thank You Naveen....It is quite difficult to go with DOM BreakPoints...Now It is easy with this trick...😊
Thank you Naveen for this Quick video for this issue most of us face while automation 👍😊
Thanks Naveen … these simple automation tricks makes life easier… previously i used to open debugger for it…now this will help a lot!
Thank you so much Naveen for this trick. I was struggling for such drop down since last 1 week. I will try like this and will let you know.
Thank you. After struggling with this issue, your solution worked.
You are the best in explaining testing topics. Very helpful
You are really god gift for all the QA people who is already in industry and people who are looking for job, I donot think we need to apply our brains while desgining framework or designing the scripts :) , simply coming to your channel and refer the videos and getting knowledge.
My Request , can you please do a video on Common/reusable methods in selenium webdriver which can be accessed across the frame work, I found Common methods for Webdriverwait, type, click . Can you please do a common methods for Calender , Bootstrap dropdowns, webtables, Search functionalitys , Auto Suggestions, Take screenshots ...I hope you can do it for your students :) because it is cakewalk for you :)
Thank yo so much ..i was so stuck bcz of this issue... completely helpful!
Thanks Naveen. I was able to use this in my project with Angular JS drop downlist. Thank you again.
Thank you so much for sharing this helpful knowledge with us. Continue the same ❤
Thank you this has been extremely helpful!
Thank you very much sir!
This is very useful and informative tip.
really usefull..Thank you sir...all your videos are very helpful
It may be small thing and this willl very useful tips to automation community..thanks naveen
It will really helpful if you share videos on all or major expected conditions(Webdriverwait) like staleness etc. in selenium when to use
Alternative if blur is not present: focusout - same trick, remove all, worked on a react dropdown I was looking into.
thank you
Thanks a lot Naveen for sharing this.
We can use the below script from browser dev tool console as an alternative for the same concept
setTimeout(function(){debugger;}, 5000)
Can you elaborate on it bro? Like how to use this?
Please open your browser dev console paste the script and hit enter. After 5 seconds the ui will freeze so that with the help of the inspector tool you can start inspecting the desired elements
this code is a savior! even blur sometime doesn't work in salesforce , like setup dropdown.. this code works. thanks very much.
@@rakeshkumarpanda1693 Can you please tell me after opening dev tool where I have to paste this script.
@@adityaphadnis1551 please follow below steps
1. Open your browser dev tool
2. Select the console tab
3. Paste the above code and hit enter to execute. The browser will freeze after the mentioned time period
Hi Naveen, thanks for sharing this. But it is not working in my case, I deleted the blur property as well but the moment I tried to inspect the element, the same has been selected. Please let me know if you know some other way
Thank you so much Naveen sir your trick is working wonders for me forever grateful to you...
Always welcome
Thanks a lot Naveen, we appreciate you buddy.
Awesome!!
Thanks for creating video on this.. It’s very useful and will make the life easier.. Great Job 👏👏
Amazing! Thanks for sharing 🙏
Very Helpful.
very good. congratulations.
nice one. i have another way of handling this. but this is something different
Thank you so much it is very clear and easy process
Awesome trick ...hats off
Thank you so much ❤
You are Awesome ....Thanks for all Gyan
You're the best, thanks a lot, man!
This is very useful video. Thank you so much for such amazing videos.
That's why you are awesome naveen!..
You solved my problem. Thank you very much.
Great!! But did not work for my application. Still I am not able to inspect
This video is very helpful...
Thanks!
Thank you for amazing information.
Thank you Naveen for this video
Thank you Naveen it's really useful
Hello sir, your videos are really very helpful thank you for posting such an useful content. And I really want you create one video on, when user Zoom on image at that time cursor symbol gets change and capture the element.
is that possible to do???
Thankyou So much sir it was very helpful to me..
What I regularly do is in console ... setTimeout(()=>{debugger},8000) and quickly click the dropdown and wait 8 seconds
🎉🎉 Tnk u so much buddy 😎
Thank you Naveen this was very helpful...
Thank you a lot Naveen.
In my case, I had to also remove the focusout property along with blur in order to inspect the suggestive list.
did u get answer?
very useful explanation
Glad you think so!
Too good. 😇
Thank you for info
Perfect Naveen..
Thanks for videro make more such type of video.
quick and crisp 👍🏻
Hi Naveen,
Thank you so much for the awesome help.
Can you please suggest something to Automate Mobile App Drop Down?
Awesome tip, thanks for sharing 👏
Thank You Naveen.
Hi I am also facing the same issue of hidden value i cant identify the element .Like you said in the video delete 3 items from blur if it is not then focusout that too is not present can you suggest something else
Hi Naveen can you help to select from that more dropdown in flipkart I am giving the xpath right but elements list is not getting any entry size is still 0.
Hi Naveen, Hope you are doing good, This trike is very useful and I tried to use it but it's not working in my application can you please share any workaround it
Thank you.. very helpful!!
In my case, i could not able to find BLUR property itself in the Event Listener and its not at all visible. Please suggest alternative solution for this.
You can use ‘focusout’ in that case
It is also another event in eventlistener
Thank you so much.
This is not working for lightning or Salesforce application.
Same issue
How did you resolve it then
You can try removing focusout option in Event listener only. That will work.
@@adityatripathi3379 not working too
Thank you. It worked
Thanks a lot sir, it is very easy, have one more way, will share i.e. something we can do through console
Thankyou Very Much
Helpful THanks a lot
Sir I'm looking for some help regarding automation through selenium how can I contact you.
Hi naveen..have doubt in inspect the child category of flipkart..my interview question ..open flipcart- click any one category-find out xpath of child category...little bit difficult to find out the xpath of this..can you guide me how to take xpath for this?
Excellent man
@Naveen AutomationLabs Another trick is when the list appeared, press tab key manually to reach inspect button and hit enter key. You will find element source code without disabling blur property for those objects....
This won't work if you have many elements on the page like Flipkart or Amazon. In fact if you try the same on Flipkart and moving manually to inspect icon and press enter. List is getting disappeared.
@@naveenautomationlabsTrue, for multiple elements it becomes difficult..
Great
Hi Naveen, thanks your videos are really helpful!
I have a query, in which when I am clicking on a button it is giving me one id, then have to wait overnight, and then next day login on the other URL where this id will have few account numbers and other data which I have to verfiy. but waiting overnight is must for data to generate , How this can be managed using Selenium ?
Hi this is not a right candidate for test automation
Hi Naveen, Selenium is not able to automate the pages having intermediate redirection pages.
Page 1> Page2> Page 3
Selenium is able to go up to page 2 URL only.
What to do, please help.
Perfect 🥰
Hi Naveen,
In in my react J web application, i could not able to find BLUR property itself in the Event Listener and its not at all visible. Please suggest alternative solution for this.
Thank you
Hi Naveen what if no blur is not available?
Nice trick thanks
I need same question for Appium. I need to get data from drop-down of 10 values. I used Select class. But, it get the text of only visible text, it is not getting last 2 values because of hidden by scrolling. Please give me solution for Appium
Sir, will this work for tooltip?
Hi Naveen, If I want some advice regarding career growth , how can i connect with you directly?? Please reply
Sir pls tell, how to inspect "camera & accerlaries " under Electrons dropdown??????????
Thank you nvin..
Hi sir ,how to select option(e.g.Ahmedabad) from a list without using select method? Thanks.
Osm Bro Thanks
Can someone explain how he captured that xpath - Contains?
He, I'm trying this on my test site but it's not working. Is there any other ways to do this?
I thought Ctrl+shift+C shortcut will work here but it didn't. Thank for the video sir.
we can use "Paused in debugger " In Console Run cmd : setTimeout(()=>{debugger},5000) and handle the hidden values.
It's false it will not work out
Hi Naveen if u have videos regarding browser authentication application to find broken links and how to add cookies in the HttpURLConnection pls let me know