How to locate a text in word

Hi
Anyone help to click a particular text in Word document,
Click text not working

Hi
we can do this in two ways
–either we can get the text from the word document using uipath.word.activites (go to design tab->manage packages->in official tab-> search for the above mentioned packgae and install them) and using read activity where the output would be a string variable named out_text
–now use assign activity like this
out_stringposition = out_text.IndexOf(“yourstring”)
where out_stringposition is a int32 variable which will have the position of that string in the text obtained
or
–we can use start process and pass the file path of word as input and
–once it gets opened we can use send hot key activity with key ctrl+F
–then we can use click activity on the find and replace field and use type into activity and type the string you want to search

hope this would help you
kindly try this and let know for any queries or clarification

Cheers @Vidhyaa