My app written in c# (winforms) launches a third party using Process.start().
After launch, I need to fill in some information in Search Textbox of Third party app. So how to identify the textbox of thirdpaty app? how to fill info in it?
Any clue or guidance? Keywords to search for?
You can do this using the UI Automation Library.
Using either UISPY.exe of Inspect.exe find the automationid , name etc any
parameter that can uniquely indentify the TextBox. One you have done this
you can do something like this, assuming you know the automation id.
Maybe the textbox is not uniquely identifiable by itself , you can use conditions like process id , parent container id etc to pin point it.
To Click a Button. Find the automation element first using a condition of your choice and then