WebDriver

在Selenium2.0中,最大的变化就是引入了WebDriver Api。

WebDriver提供了面相对象的API, 并且对现在流行的动态网页提供了更好的支持

 

WebDriver VS Selenium-RC

WebDriver实际上替代的是Selenium1.0中的Selenium-RC。   WebDriver得到了浏览器原生支持,可以直接操作浏览器。 而Selenium-RC的工作方式则完全不同,对于Selenium-RC支持的浏览器,在浏览器被启动时,Selenium-RC会将javascript注入到浏览器,让后通过这些javascript去控制浏览器。

 

WebDriver  VS  Selenium-Server

在使用WebDriver做web自动化时,你可能需要用到Selenium-Server。 如果你的测试代码和浏览器都在同一台计算机上,并且你只使用了WebDriver的API,那么你不需要使用Selenium-Server.

需要配合使用Selenium-Server和WebDriver的情况包括:

  1. 如果你要使用Selenium-Grid去使用多台计算机运行你的测试用例
  2. 如果你需要在远程机器上的浏览器中运行你的用例
  3. You are not using the Java bindings (i.e. Python, C#, or Ruby) and would like to use HtmlUnit Driver   不理解,所以把原文拷贝过来。



 

你可能感兴趣的:(Selenium)