"The Art of Testing" for C # Automated Web Testing in CruiseControl.NET

We are currently using SWEA ( http://webiussoft.com ) to run automated site tests during our nightly builds of CruiseControl.NET.

We are looking for a more reliable solution, and we are looking at the "Art of Testing" ( http://www.artoftest.com ).

Does anyone have experience with this tool?

Most importantly, how easy is it to support tests with this tool?

Or are there any other C # / NUnit / CruiseContol.NET solutions that you would recommend?

+3
source share
4

ArtOfTest. , , CruiseControl.NET. - CruiseControl.NET ( Windows). , unit test , . , , Windows, ( ) , , .

TeamCity - CI. , .

, contact@artoftest.com. .

WatiN . , - VisualStudio , .

, Cody

+2
+1
0

, - . , .

Watin , , . ... - ..

Watin IE Firefox, .

, , , - " " " ". " " (NUnit ), , :

...

var wrapper = new SearchPageWrapper(browser);
wrapper.ClickAdvancedSearch();
wrapper.EnterSearchPhrase("dog");
wrapper.SetSortBy(SortType.Date);
wrapper.ExecuteSearch();

... , ( ):

public class SearchPageWrapper {
  ...
  public void ClickAdvancedSearch() {
    _browser.Buttons("advSearch").Click();
  }

  public void EnterSearchPhrase(string phrase) {
    _browser.TextBox(Find.ByName("phrase")).TypeText(phrase);
  }
  ... etc ...
}

, , , , Watin .

0

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


All Articles