Search Results

0
votes
2answers
404 views

How to click on an AutoCompleteExtender with Watin

For my acceptance testing I'm writing text into the auto complete extender and I need to click on the populated list. In order to populate the list I have to use AppendText instead of TypeT …
1
vote

How to click on an AutoCompleteExtender with Watin

In case someone has the same problem. It works with the next code: string lookupString = "string in list"; Regex lookup = new Regex(string.Format(".*{0}.*", lookupString)); Element …