hello and thank you for your quick response.
Too bad that it does not work out that way.
Another question:
is it then possible to use the same license on VMachine? I hope we don't need for Ranorex VMachine other Licence.
i tried to create Method, wich don't use Mouse Click and Keyboard, it works with some Elements, but with others not, what do you think about actions like this:
/// <summary>
/// This is a placeholder text. Please describe the purpose of the
/// user code method here. The method is published to the user code library
/// within a user code collection.
/// </summary>
[UserCodeMethod]
public static void elementactions(RepoItemInfo element, string Texttofill)
{
string thiselement = element.FindAdapter<Unknown>().ToString();
thiselement = thiselement.Substring(1);
Report.Info(thiselement);
if (thiselement.StartsWith("Button")){
element.FindAdapter<Button>().Press();
}
if(thiselement.StartsWith("Radio")){
element.FindAdapter<RadioButton>().Select();
}
if(thiselement.StartsWith("Text")){
element.FindAdapter<Text>().PressKeys("");
element.FindAdapter<Text>().PressKeys(Texttofill);
}