Is there a headless browser for .NET (for automated Web-UI-Tests)?

痞子三分冷 提交于 2019-12-17 19:36:17

问题


Is there a headless browser for .NET?

I am looking for this in a testing context.

Coming from Java I am thinking of something similar to HtmlUnit (http://htmlunit.sourceforge.net/) which itself is the base for different higher level tools like Canoo WebTest or Celerity.

I would like to create automated UI tests for web applications in a .Net environment, but not using Browser-Remoting (Watin, Selenium...)

If possible, I would like to stick to a .Net solution and avoid using Java or Ruby tools.

What are the options? What are you guys doing?

Thanks


回答1:


If you're adamant about sticking with pure .Net solutions, then you have a few useful options, although none of them are really great.

  • HtmlUnit with IKVM. This will let you run HtmlUnit in .NET, but I've found that the converted code tends to be much slower than HtmlUnit all by itself.
  • Data Extraction SDK. You could wrap this to roll your own request processor, and it'll handle cookies, forms, et cetera.
  • System.Net.WebRequest. Requires the most heavy lifting, but underpins most of what you'd be working with anyway.

You can also consider looking at LiquidTest, but it's not cheap: developer licenses start at $2,000. And if you want to run it on a continuous integration server, that'll cost you another $1,000 for a server license.

IMO, while the libraries and languages in .NET provide some powerful features, the supporting toolset often falls short of competitors in other languages in some areas. Unfortunately, web integration testing is one of those areas.




回答2:


You might want to check out the new Web Testing features of Visual Studio 2010:

http://channel9.msdn.com/posts/VisualStudio/New-Web-Test-Debugging-Features-in-Visual-Studio-Team-System-2010/

You can download Beta 2 of VS2010 for free and try them for yourself.




回答3:


See if Headless browser for C# (.NET)? and disable IE visibility while using WatiN is what you looking for (if so, I can expand this answer with more details)




回答4:


By browser remoting I assume you mean remotely controlling a 3rd party browser. Selenium offers a driver for the java browser, htmlUnit, which is a headless browser (no GUI). http://seleniumhq.org/docs/03_webdriver.html#htmlunit-driver



来源:https://stackoverflow.com/questions/2080957/is-there-a-headless-browser-for-net-for-automated-web-ui-tests

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!