Robot Framework 官方網站:http://robotframework.org/github

介紹


Robot Framework 架構是一個通用的驗收測試和驗收測試驅動開發的自動化測試框架(ATDD)。它具備易於使用的表格來組織測試過程和測試數據。chrome

test case    
open browser http://www.baidu.com chrome
input text id=kw robot framework
click button id=su  
close browser    

它使用關鍵字驅動的測試方法。數據庫

對於上面的例子來講,open browser 、input text、click button 和 close browser,都是「關鍵字」,這些關鍵字由 robotframework-seleniumlibrary 類庫所提供。固然,咱們也能夠自定義關鍵字。編程

其檢測能力能夠經過測試庫實現可使用 Python 或 Java 的擴展,用戶可使用相同的語法,用於建立測試用例建立新的更高層次的現有的關鍵詞。數組

Robot Framework 的操做系統和應用獨立框架。核心框架是使用 Python 和運行在 Jython(JVM)和 IronPython(.NET)。架構

特色


Clear框架

Robot Framework has a modular architecture that can be extended with bundled and self-madetest libraries.ide

Test data is defined in files using the syntax shown in the examples below. A file containing test cases creates a test suite and placing these files into directories creates a nested structure of test suites.模塊化

Easy

When test execution is started, the framework first parses the test data. It then utilizes keywords provided by the test libraries to interact with the system under test. Libraries can communicate with the system either directly or using other test tools as drivers.

Test execution is started from the command line. As a result you get report and log in HTML format as well as an XML output. These provide extensive look into what your system does.

以上是官網的介紹,我懶得翻譯了。我將 Robot Framework的特色總結爲如下幾點:

  • 使用簡單
  • 很是豐富的庫
  • 能夠像編程同樣寫測試用例
  • 支持開發系統關鍵字

模塊化 & 架構


Modular

Robot framework 本質上是基於 Python 語言開發的一個框架,它提供了一套獨立的語法。它自己只提供基礎的一些功能。好比,它自帶的 Builtin 庫中提供的關鍵字告訴你如何定義變量、數組和字典,打印信息,分支語句和循環等。以及框架自己所提供的 「自動化」 功能,如何組織用例,生成測試報告。

若是你想實現某一類型的自動化測試,如中接口、UI 或 移動APP的自動化,須要經過第三方Library完成。

支持的 Library


Robot Framework 所支持的庫主要分 標準庫 、 擴展庫 和 其它 。 標準庫提供基本功能,擴展庫提供特定領域的操做。

由於 Robot Framework 所支持的測試庫很是多,這裏例一些經常使用的。

  • Web 自動化測試:SeleniumLibrary,Selenium2Library,Selenium2Library for Java、watir-robot 等。

  • Windows GUI 測試:AutoItLibrary。

  • 移動測試:Android library、iOS library、AppiumLibrary 等。

  • 數據庫測試:Database Library (Java)、Database Library (Python)、MongoDB library 等。

  • 文件對比測試:Diff Library。

  • HTTP 測試:HTTP library (livetest)、HTTP library (Requests)等。

查看全部Librarys

例子


最後咱們一睹 Robot Framework 語法的風采。