Dude I'm so grateful about your explanation, I was trying to get warranty date from Dell website and the Power Automate was getting text equal to the first search, so after I removed the 'condition' text equal to text and kept the class title, it worked well. Thanks a lot!!!
So helpful! I've been looking for an explanation on how the ordinals system works. Totally didn't know it had a starting point of zero. Would've taken me at least a few more days of testing and frustration to figure that out. Thanks very much!
Hiya Dexter, you simply don't know when the rows stop :) The trick is to do error handling on the first read action in the loop. If it fails, set a bool to %True% and continue flow. Then an if sentence with bool = True ? => exit loop. Hope that helped
Good day. Thomas where would be a good place to learn in detail about Power Automate (i.e. course work or books)? It seems like there is a lot of tailored information for easy tasks. I is real hard to find in-depth information in abundances like yours. I would like to know in-depth information about all Power Automate, but right now I'm learning how to make flows between software's on Windows. It is hard to get thing to repeat without having to redo all of the UI element each time, when I open Power Automate and the software's. Do you have any good suggestions? Thank you Jeff
you don't need to scroll down, it reads the data from the html code, not what your eyes can see. So just keep looping through the data and use an 'on error, go to label' to exit the loop when there isn't any more data
@@thomasshakypetersen1609 hi have tried the loop, it extracts 15 items which are visible and from 16 item it's not able to extract because for 16 items we should scroll down any option
@@mukramcricktech6934 I see, well in that case the code doesn't load the rest of the board until you scroll down. It's annoying but fixable.You have to scroll down every 10 or so items. Create an if sentence at the top of the loop, checking if a counter = 10. If yes, scroll down. Is that possible?
a logo will have an element that you can find with the browsers dev tool. The img element will probably have a src attribute, which would be the name of the image.
@@arenahax6655 there is always some static aspect of it. It depends from site to site of course, unfortunately I don't have a general answer to the issue except for identifying what is static and what isn't.
Very nice. I'll ask if you could help with another head-scratcher, I'd appreciate if you had the time to check! Basically I activate a web browser on a page, select a button, and the action generates a second tab (where I'd like to submit username and password) which comes with a "formally incorrect URL" - I can't use it directly to open a new browser instance. Unfortunately, PAD switches back to the original tab before it can fill the fields, and the flow fails since it can't recognize the UI elements. I've tried clicking on the tabs area "on the right", but of course the trick doesn't work. I've also tried typing text (hotkey combination Ctrl+2) to switch to the second tab. Still doesn't work. PAD doesn't do image recognition like Automate Anywhere either, so right now I'm a little stuck on this apparently little issue.
sure, the "launch edge/chrome..." action attatches itself to a single tab. When opening a new tab, you need to run a new "launch..." action and choose the "attatch to.." option. There, you can either attatch to the activated tab or choose it by title ( ex. shopping cart , the * are wildcards)
Great - Everyone asking me about selectors in PAD gets a link to this!
thanks Anders :)
Great clip! I can see we are multiple Danes working in this community, that's so cool to see! :)
thx, glad you liked it :)
Thanks for the great video, able to understand clearly.
I'm very happy it was helpful, thx for mentioning it :)
Thank you for making my day. Great video
thx, glad you liked it!
Great video Thomas, please keep them coming!
Thx mate, that motivates a lot
@@thomasshakypetersen1609 Honestly you deserve it. Btw how can I contact you personally regarding a paid request?
Dude I'm so grateful about your explanation, I was trying to get warranty date from Dell website and the Power Automate was getting text equal to the first search, so after I removed the 'condition' text equal to text and kept the class title, it worked well. Thanks a lot!!!
great solve mate, glad i could help
So helpful! I've been looking for an explanation on how the ordinals system works. Totally didn't know it had a starting point of zero.
Would've taken me at least a few more days of testing and frustration to figure that out. Thanks very much!
Thx, glad it was helpful!
Wow did this help me, thank you.
Glad to hear it :)
exactly What i was looking for.. thanks for posting this.
Great valuable Infos. Thanks for Sharing!
great job. super useful!
Brilliant! Thanks ever so much.
Glad you liked, give a shout if you're wanting any topics covered.
You save my day Thanks
Can you make more videos like this, with advanced examples
was thinking about it, yeah :)
Hi! Do you have any video about WINDOWS UI ELEMENTS SELECTORS? Not Web selectors, but Windows selectors. Thanks
heya, no i don't. The concept is the same though, just different element names.
Is it posible select an element from a shadow root?
I remember having problems with it, so every time I encounter one I use a .js, that works fine.
thanks for sharing great video
may I ask how can I loop it to the last of Ordinal
when I original don't know how much is there?
cheers
Hiya Dexter, you simply don't know when the rows stop :) The trick is to do error handling on the first read action in the loop. If it fails, set a bool to %True% and continue flow. Then an if sentence with bool = True ? => exit loop.
Hope that helped
Good day. Thomas where would be a good place to learn in detail about Power Automate (i.e. course work or books)? It seems like there is a lot of tailored information for easy tasks. I is real hard to find in-depth information in abundances like yours.
I would like to know in-depth information about all Power Automate, but right now I'm learning how to make flows between software's on Windows. It is hard to get thing to repeat without having to redo all of the UI element each time, when I open Power Automate and the software's.
Do you have any good suggestions?
Thank you
Jeff
hiya Jeff, the best youtuber (and most popular) is probably Anders Jensen, ua-cam.com/video/0S_QgIOvB7c/v-deo.html
How do you get all the data from the box for each down scroll please explain
you don't need to scroll down, it reads the data from the html code, not what your eyes can see. So just keep looping through the data and use an 'on error, go to label' to exit the loop when there isn't any more data
@@thomasshakypetersen1609 hi have tried the loop, it extracts 15 items which are visible and from 16 item it's not able to extract because for 16 items we should scroll down any option
@@mukramcricktech6934 I see, well in that case the code doesn't load the rest of the board until you scroll down. It's annoying but fixable.You have to scroll down every 10 or so items. Create an if sentence at the top of the loop, checking if a counter = 10. If yes, scroll down. Is that possible?
How to detect logo in Web UI
a logo will have an element that you can find with the browsers dev tool. The img element will probably have a src attribute, which would be the name of the image.
@@thomasshakypetersen1609 If website is dynamic then?
@@arenahax6655 the image name is almost always static. Try to reload the website to check what changes and what doesn't
@@thomasshakypetersen1609 i am talking a scenario when dynamic websites aka different url with different design needs to automate?
@@arenahax6655 there is always some static aspect of it. It depends from site to site of course, unfortunately I don't have a general answer to the issue except for identifying what is static and what isn't.
Very nice. I'll ask if you could help with another head-scratcher, I'd appreciate if you had the time to check! Basically I activate a web browser on a page, select a button, and the action generates a second tab (where I'd like to submit username and password) which comes with a "formally incorrect URL" - I can't use it directly to open a new browser instance. Unfortunately, PAD switches back to the original tab before it can fill the fields, and the flow fails since it can't recognize the UI elements. I've tried clicking on the tabs area "on the right", but of course the trick doesn't work. I've also tried typing text (hotkey combination Ctrl+2) to switch to the second tab. Still doesn't work. PAD doesn't do image recognition like Automate Anywhere either, so right now I'm a little stuck on this apparently little issue.
sure, the "launch edge/chrome..." action attatches itself to a single tab. When opening a new tab, you need to run a new "launch..." action and choose the "attatch to.." option. There, you can either attatch to the activated tab or choose it by title ( ex. shopping cart , the * are wildcards)