Testing the ASP.Net 5 UI with a headless browser (which works on Windows, Mac, and Linux)

Does anyone know if a mute browser can be used to test the user interface of an ASP.net 5 application designed for dnxcore50? Now I can create an application that can be developed and run on Windows, Mac and Linux. However, you cannot run user interface tests because they need a browser automation solution such as Selenium.

+5
source share
1 answer

You will have the same problems as any other web frameworks.

You can use PhantomJS to do just that.

has windows and osx build. But at the time of this writing, you will need to compile a version of Linux yourself.

+1
source

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


All Articles