I want to extract select options data as table format. My select tag has multiple options and I want to extract all in table format
Is it a drop down? there are multiple ways you can extract the data you can use the find attribute activity also you can use find children activity.
Hope this helps
My scenario is when I click on one hyperlink some set values (the data is in select and options tags) will be appear below the link. I want to extract the data in table format
Can you add a screenshot of the page?
You tried the [Activities - Table Extraction] actvity (Activities - Table Extraction)
I tried table extraction but its not working.
in the screenshot when we click on small triangle below options box will be displayed. I want to extract the data from there
Try with find children activity once
Find Children activity will return UIElements. I want the value/text of all the items exist in select tag
Welcome to the community
after find children
you can use for each activity and inside that get currentitem.innertext to get the value…which can then be added to datatable using add datarow
cheers