0

I got a web form to enter 5000 contact numbers.
I'm trying to input data automatically through Power Automate.

But then that doesn't work properly. Because the ID name of two field are the same in the form. as a result same data are copied in both field. Is there any solution from power automation software? or is there any way to change the HTML ID from the browser and save it permanently in that browser?

Please help me.
And please note I've no access to the particular website to change from the server site.
enter image description here

Skin
  • 9,085
  • 2
  • 13
  • 29
Towfik
  • 3
  • 1
  • Power Automate and Power Automate Desktop are not the same thing. Is this Power Automate **Desktop**? – Skin Sep 25 '22 at 07:07
  • Thanks for your response. Yes it's Power Automate Desktop. I solve ID related issue with Page Manipulator extension. Now it puts different data in different field. But here I'm facing another issue. When i fill data through Power Automate Desktop, form do not accept the data. It acts like blank field submission. But when I copy same data manually, it accepted. – Towfik Sep 26 '22 at 08:17

1 Answers1

0

You could use Jquery selectors to identify UI elements. Use something like below in the Text editor of your UI element:

label:contains("Retailer Number")

enter image description here

Tomasz Poszytek also has a video about his: https://www.youtube.com/watch?v=Lpk35MeTgFA&t=1704s

Expiscornovus
  • 1,222
  • 1
  • 3
  • 7
  • Thank you brother for sharing that amazing idea and tutorial. I tried as you said, but UI Element Selector doesn't select field of that particular website. But it works on other website. – Towfik Sep 28 '22 at 09:26