Hello Everyone,
I have to click download icons which showed in image but there are similar icon but there is a column name as file name so i have to click download ocon where is the written Invoice Copy fron of icon so how i can do that and Invoice copy is editable not fixed.
Thanks
jast1631
(Jagravi Trivedi)
September 15, 2024, 5:11pm
2
Click image classic activity is there you can use that
Anil_G
(Anil Gorthi)
September 15, 2024, 5:26pm
3
@suraj_gaikwad
Can you show some screenshot…click image is present in modern as well…but i believe there would be a better way too…we can suggest if you can show some screenshots
you can try checking the selector in ui explorer and find a unique one as needed
cheers
I tried both Modern, and click with anchor but I’m not able to get selector. invoice Copy
@Anil_G @jast1631
Anil_G
(Anil Gorthi)
September 15, 2024, 5:32pm
5
@suraj_gaikwad
you can use something like this
it looks like a table so
<webctrl tag='td' tablecol='1' innertext='Invoice Copy' />
<nav up='1' />
<webctrl tag='td' tablecol='5' />
<webctrl tag='button' name='download' />
the above is for illustration actual might differ a little…but idea remains same
Also its a table so you can use extract table data and then get the row number of invoice copy use it in the selector to click on download
cheers
lrtetala
(Lakshman Reddy)
September 15, 2024, 5:36pm
6
Hi @suraj_gaikwad
Can you try with For each ui element activity
Regards,
Anil_G
(Anil Gorthi)
September 15, 2024, 7:06pm
8
@suraj_gaikwad
Tablerow should not be used as it can be on any row
nav up means it will go one level above current selection and will try to see the child
so basically what I wrote above is a combination of selector for column 1 using which column5 is identified usign nav up
As Per selector thsi is what you can use
<webctrl tag='input' tablecol='1' innertext='Invoice Copy' />
<nav up='2' />
<webctrl tag='td' tablecol='5' />
<webctrl tag='IMG' />
cheers
Issue resolved by used table extraction then for each row in data table the n getting each row once the invoice copy match then it’s clicking at right icon.
But i want try in single activity
@lrtetala @Anil_G @jast1631
Thanks guys
1 Like
Anil_G
(Anil Gorthi)
September 17, 2024, 6:14am
10
@suraj_gaikwad
please check the above comment with sample selector
cheers
Hi anil
Above selectors is not working.
@Anil_G
Thank you
1 Like
postwick
(Paul Ostwick)
September 19, 2024, 6:17pm
12
I hope you’re working in modern, you should be. Then it’s easy to use an anchor to indicate the text next to the button.
postwick
(Paul Ostwick)
September 19, 2024, 6:17pm
13
That will work but it’s a lot of extra steps when all you really need to do is use an anchor.
system
(system)
Closed
September 22, 2024, 6:18pm
14
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.