Are there any better tools than white for the WPF automation test?

I found the White project in codeplex and Snoop . However, I was wondering if there are any better tools for automating WPF.

+6
source share
4 answers

Perhaps you should study the "base" of all of the above systems - its "Automation of the user interface" . It really is not that hard to learn and get used to. This is not once trivial (for example, searching or installing SelectedItem in a ComboBox, for example), but in fact the entire system described above is basically a wrapper around user interface automation that is already built into .NET.

+4
source

As Hadi mentioned, Test Studio will help you with recording / playback and many other features.

However, since you are interested in something related to the various DSL-ish tools, please check out our free testing base . You can use it to write powerful code-based tests for WPF as well as browser-based tests.

As part of the testing, there is also a board-based support system if you are looking for excellent technical support during your project.

+2
source

Recording functions are good, but when it comes to creating supported and extensible user interface tests, you will inevitably end up writing them yourself. I would recommend sticking to White if that is the case, and using the Coded UI with a built-in recorder if you have only a few tests.

Here I take a closer look at two structures: Coded user interface against white

+1
source

There are other tools, mostly commercial. Check out Telerik's Test Studio , followed by CodedUI , which comes with Visual Studio Ultimate versions.

0
source

Source: https://habr.com/ru/post/909094/


All Articles