And then separate it to
1)zip
2)street
3)City
4)State
How ever i faced issue that, UiPath gets info not “correctly”
As you can see below: the last word in the name of the street is written together with the first word in the name of the city, so these two initial lines are glued into one, which makes it difficult to get the correct names of the street and the city
@ushu and @THIRU_NANI Thank you for your feedback and support!
Im pretty shure you advices will help me in future)
I found good one solution for me:
I noticed in UI Explorer that “innerhtml” contains value "2094 Cardinal Lane “br uipath_custom_id=“46” Quincy, IL 62301”
Where
1)zip - 62301
2)street - 2094 Cardinal Lane
3)City - Quincy
4)State - IL
and "br uipath_custom_id=“46” is a separator
In that case it is easy to Split string and get all nessecary information(added url for beginners who are interested in operations with Strings) - How to manipulate a part of string: Split, Trim, Substring, Replace, Remove, Left, Right
I used “Get Attribute” Activity and get “innerhtml” attribute.(this idea i got from here -Data scrapping for getting Inner Html of a tag)