I set the setting to "WpfImprovedOnly" and updated some of our repository items that I can start testing. We have a login form element with the type ComboBox in which we choose a specific user. Until now we could do that by using the following code:
Code: Select all
combobox.Click();
var item = combobox.FindSingle<ListItem>($".//listitem[@text='{textToSelect}']");
item.Click();
How will I be able to select a specific entry from the ComboBox with "WpfImprovedOnly"? I even can't use the UIAutomation element as a workaround as it's deactivated with "WpfImprovedOnly".

Michael