Could someone help by defining the relation between the following: Selenium, Webdriver and most importantly test-unit.

Thanks!

有帮助吗?

解决方案

There is no relationship between Selenium and Test-Unit.

Selenium is the overall project which combines RC, WebDriver and Grid.

WebDriver is the newest and more stable piece in the project, allowing you automate a browser using much more stable so-called 'native events'.

TestUnit is simply a unit testing tool for Ruby. You write some tests using Ruby, run it using TestUnit, it verifies if your test passes or fails. You can use this to write Selenium tests.

This is mostly mentioned on the Selenium site:

http://seleniumhq.org/docs/03_webdriver.html

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top