Can I use Webrat applications for ASP.NET?

Does Webrat require a web application to be written in Ruby / Rails?

I would like to try it for writing tests against an ASP.NET web application.

+3
source share
2 answers

You can use webrat for any application, not just Rails. What you do is use the Cucumber + Webrat + Mechanize adapter. This combination makes regular HTTP requests against your web application.

In fact, at the moment I am working on a simple smoketest that tests the portal portal and can verify that everything works and works in different environments. (localhost, test env, staging, production).

. : //webrat/

, Webrat Mechanize. , .

, JavaScript, , , - (Watir, Firewatir, Selenium ..).

+3

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


All Articles