Hi,
I have my own custom UIAutomation Clientside provider for automating a control.
In that provider code, I have the below code -
public static ClientSideProviderDescription[] ClientSideProviderDescriptionTable = { new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(TimeControl.Create), "ATL:1004F9A0") };
The above code works fine. But the classname of my control keeps changing. So, I modified the code as shown below -
public static ClientSideProviderDescription[] ClientSideProviderDescriptionTable = { new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(TimeControl.Create), "ATL:", "MyExe.exe", ClientSideProviderMatchIndicator.AllowSubstringMatch) };
This is not working. Can anyone help me what I am doing wrong here?
Regards,
vijay