I’m trying to create a coded workflow and have the “ColumnTable” variable assigned in the descriptor of a text field of a table. This variable will be dynamic depending on the data I want to extract.
You’ll need to provide the variable via a ClickOptions object. You can try with the following:
[Workflow]
public void Execute()
{
var ColumnTable = "9";
var AppBrowser = uiAutomation.Open(Descriptors.Ebroker.Main2);
var clickOptions = new ClickOptions();
clickOptions.Variables = new Dictionary<string,string>(){
{"ColumnTable", ColumnTable}
};
AppBrowser.Click(Descriptors.Ebroker.Main2.INFORMACION, clickOptions);
}