`

写cucumber测试可以参考click_link_with Webrat

阅读更多
= Webrat - Ruby Acceptance Testing for Web applications

- http://gitrdoc.com/brynary/webrat
- http://groups.google.com/group/webrat
- http://webrat.lighthouseapp.com/
- http://github.com/brynary/webrat
- #webrat on Freenode

== Description

Webrat lets you quickly write expressive and robust acceptance tests for a Ruby
web application.

== Features

* Browser Simulator for expressive, high level acceptance testing without the
  performance hit and browser dependency of Selenium or Watir (See
  Webrat::Session)
* Use the same API for Browser Simulator and real Selenium tests using
  Webrat::Selenium when necessary (eg. for testing AJAX interactions)
* Supports multiple Ruby web frameworks: Rails, Merb and Sinatra
* Supports popular test frameworks: RSpec, Cucumber, Test::Unit and Shoulda
* Webrat::Matchers API for verifying rendered HTML using CSS, XPath, etc.


== Simulating browser events

  # GET a URL, following any redirects, and making sure final page is successful
  visit "/some/url"

  # In general, elements can be located by their inner text, their 'title'
  attribute, their 'name' attribute, and their 'id' attribute.
  # They can be selected using a String, which is converted to an escaped Regexp
  effectively making it a substring match, or using a Regexp.
  # An exception is that using Strings for ids are compared exactly (using ==)
  rather than converted to a Regexp
  # If the element you are trying to look up does not exist, an error occurs


  # Links can be looked up by text, title, or id
  # To match... <a href="/signup" title="Sign up" id="signup_link">Click here to
  join!</a>
  click_link "Click here to join!" # substring text
  click_link /join/i               # regexp text
  click_link "Sign up"             # substring title
  click_link /sign.*up/i           # regexp title
  click_link /signup.*link/i       # regexp id
  click_link "signup_link"         # exact id


  # All fields can be looked up by ID, name, or label inner text

  # text fields, password fields, and text areas can be filled in
  # <label for="user[email]">Enter your Email</label><input type="text"
  name="user[email]" id="user_name">
  fill_in "user_email", :with => "good@example"      # exact id
  fill_in /user.*email/, :with => "good@example"     # regexp id
  fill_in "user[email]", :with => "good@example"     # substring name
  fill_in /user[.*mail.*]/, :with => "good@example"  # substring name
  fill_in "Email", :with => "good@example.com"       # substring label text
  fill_in /enter your email/i, :with => "good@example.com" # regexp label text

  # Hidden fields can be set
  set_hidden_field 'user[l337_hax0r]', :to => 'true'

  # Select options can be 'selected' by inner text (an exact String or a Regexp
  to match). It can optionally be selected from a particular select field, using
  the usual id, name, or label text.
  select "Free account"
  select "Free account", :from => "Account Types"
  select "Free account", :from => "user[account_type]"
  select "Free account", :from => "user_account_type"


  # Check boxes can be 'checked' and 'unchecked'
  check 'Remember me'
  uncheck 'Remember me'

  # Radio buttons can be choosen, using the usual label text, name, or id.
  choose "Yes"

  click_button "Register"

== Assertions

   # check for text in the body of html tags
   # can be a string or regexp
  assert_contain("BURNINATOR")
  assert_contain(/trogdor/i)
  assert_not_contain("peasants")

  # check for a css3 selector
  assert_have_selector 'div.pagination'
  assert_have_no_selector 'form input#name'


== Matchers

  # check for text in the body of html tags
  # can be a string or regexp
  # Matchers are verbs used with auxillary verbs should, should_not, etc.
  response.should contain("BURNINATOR")
  response.should contain(/trogdor/i)
  response.should_not contain("peasants")

  # check for a css3 selector
  response.should have_selector('div.pagination')
  response.should_not have_selector('form input#name')

== Targetted actions/matchers

  # selectors syntax is defined here: http://www.w3.org/TR/css3-selectors/
  within 'div.pagination' do |scope|
    scope.click_link "1"
  end

  within '.shows' do |scope|
    scope.should contain("NFL")
    # unfortunately, assertions don't support this currently
  end

  within 'form[name="search"] select[name="type"]' do |scope|
    scope.should have_selector 'option[value="blah"]'
    scope.should have_selector 'option[value="gah"]'
    scope.should have_selector 'option[value="eep"]'
    scope.should have_selector 'input:only-of-type'
    scope.should have_selector 'input[name="query"]'
    scope.should have_selector 'input[type="text"]'
  end
分享到:
评论

相关推荐

    Cucumber_Test_Automation_Framework:使用Java和Selenium的Cucumber测试自动化框架

    当通过执行以下步骤开发框架时,Cucumber测试自动化框架可以是一个强大的框架 •Cucumber中带有Selenium PageFactory的页面对象设计模式 •页面对象管理器 •从属性文件读取配置 •文件读取器管理器 •Web驱动程序...

    cucumber_配置指南

    这个配置指南详细地列出了在 Windows 环境下设置 Cucumber 测试框架的步骤,确保了所有必要的依赖和工具都已就绪,可以进行 BDD 测试。遵循这些步骤,开发者能够成功地在本地环境中运行 Cucumber 的测试用例。

    Api_test_cucumber_java_framework_BDD:Api测试在Java中使用带有Junit的JavaCucumberBDD框架,Maven在Jenkins中运行

    在“Api_test_cucumber_java_framework_BDD-master”这个压缩包中,我们可能找到以下关键文件和目录: 1. `pom.xml`: Maven的项目对象模型(Project Object Model),定义了项目依赖和构建过程。 2. `src/main/java...

    Selenium_RestAssured_Java_Cucumber_Bdd_Sikuli_TestNG

    RestAssured_Selenium_Java_Cucumber_BDD_Sikuli_TestNG 这是一个 API 自动化测试框架,使用: RestAssuredSeleniumJavaCucumber BDDSikulilog4jsMavenTestNGPage Object Model安装先决条件: JavaEditorMavenVS ...

    cucumber_jacoco_junit_gradle:Jacoco涵盖了Cucumber和JUnit测试的示例Gradle项目

    JaCoCo涵盖了Cucumber和JUnit测试的示例Gradle项目。 概述 为了满足较高的安全标准,假设已验证这些要求,并且一旦通过验证,则软件的质量应该很好,因此,一个软件应该具有较高和可能较低水平的软件要求。 该示例...

    Selenium_Java_Cucumber_Bdd_Sikuli_TestNG

    Cucumber_BDD_Sikuli_TestNG 这是一个 Web 自动化测试框架,使用: SeleniumJavaCucumber BDDlog4j2SikuliMavenTestNGPage Object Model安装先决条件: JavaEditorMavenVS Code 中的扩展: Cucumber Eclipse Plugin...

    SelTestWithJunit:Modified_After_cucumber_deleted_recreated_WithJUNIT 项目

    【SelTestWithJunit:Modified_After_cucumber_deleted_recreated_WithJUNIT 项目】是一个基于Java语言的自动化测试项目,其主要目的是使用JUnit进行功能测试。在项目名称中,“Modified”表明这是一个经过修改的版本...

    Selenium_RestAssured_Java_Cucumber_Bdd_Sikuli_JUnit

    RestAssured_Selenium_Java_Cucumber_BDD_Sikuli_JUnit 这是一个 API 自动化测试框架,使用: RestAssuredSeleniumJavaCucumber BDDSikulilog4j2MavenJUnitPage Object Model安装先决条件: JavaEditorMavenVS Code ...

    LibraryApp_Cucumber_JDBC:LibraryApp_Cucumber_JDBC

    【LibraryApp_Cucumber_JDBC】项目是一个基于Java的图书馆管理应用程序,它利用了Cucumber进行自动化测试,并结合JDBC(Java Database Connectivity)进行数据库交互。这个项目的核心目标是实现一个功能完善的图书...

    Maven 搭建cucumber 简单示例

    Maven 搭建cucumber 简单示例 1.新建Maven 项目 2.Eclipse安装 cucumber 插件:Help-&gt;Install New Software-&gt;Add name:cucumber location:http://cucumber.github.com/cucumber-eclipse/update-site 3.导入示例项目,...

    软件测试_cucumber交流.pdf

    它的这种设计哲学,使得每个团队成员都可以理解Cucumber编写的测试脚本,即便是非技术背景的业务分析师、产品经理也能轻松参与其中。 在敏捷开发过程中,Cucumber通过它的独特功能帮助团队成员保持沟通的连贯性。它...

    自动化测试平台cucumber框架兼容APP,WEB,API

    Cucumber,一个强大的自动化测试框架,以其易读性和可维护性在软件开发领域备受推崇,尤其在集成测试和行为驱动开发(BDD)中扮演着关键角色。它不仅支持Web应用的测试,还能够应用于移动应用(APP)以及API接口的...

    cucumber.jar

    这个JAR文件包含了运行Cucumber测试所必需的类和资源,使得开发者和非技术人员可以通过自然语言编写可执行的测试场景。 Cucumber的核心理念是将测试描述为人类可读的故事,这些故事称为特性文件,通常使用Gherkin...

    Cucumber_小Cucumber_POM

    总结起来,Cucumber_小Cucumber_POM 是关于使用 Java 和 Cucumber 进行自动化测试,特别是采用 Page Object Model 设计模式来组织和管理测试代码。通过 Gherkin 语法,团队可以以非技术语言编写测试场景,而 Step ...

    蘑菇IoT_CSDN-v1.0.1_101_jiagu_sign.apk

    Android使用的MQTT客户端,支持订阅、发送消息;支持创建连接到本地保存;支持话题消息筛选; 使用视频:https://dwz.cn/undJFEnq 好像小米应用商店也有~

    cucumber-debugging:Cucumber 测试的调试

    Cucumber 是一种流行的自动化测试工具,特别是在BDD(行为驱动开发)中,它允许开发者、测试人员和非技术人员使用自然语言编写可执行的规范。在Java项目中,Cucumber经常被用来验证软件功能是否按预期工作。然而,当...

    cucumber-stddtool:将Cucumber测试结果报告给 STDDTool 的Cucumber格式化程序

    项目移至 LEARNINGWELL 内部 GITLAB 服务器Cucumber STDDTool 格式化程序将测试结果发送到 STDDTool 的 -formatter开始: 在您的 Gemfile 中: gem 'stddtool' 并在您的/support/env.rb文件或支持目录下的任何其他...

    Cucumber-rust:Rust的Cucumber测试框架。 完全本机,没有外部测试运行程序或依赖项

    Cucumber-rust是一个针对Rust编程语言的Cucumber测试框架,它专为行为驱动开发(BDD)设计,同时也适用于测试驱动开发(TDD)和验收测试驱动开发(ATDD)。Cucumber-rust的独特之处在于它完全原生,不依赖任何外部...

    cucumber jar包

    在测试类中,你可以调用 `@RunWith(Cucumber.class)` 来指示 JUnit 使用 Cucumber 运行测试。 5. **生成报告**: Cucumber 可以生成详细的测试报告,显示每个步骤的执行情况。你可以通过配置 CucumberOptions 来定制...

    cucumber-jvm源码 BDD测试框架

    Cucumber是一个自动化测试工具,它属于行为驱动开发(BDD)的范畴。这个工具的特点是可以用自然语言来描述测试用例,因此...开发人员可以使用Cucumber进行公共方法的封装,而功能测试人员则可以专注于编写测试用例。

Global site tag (gtag.js) - Google Analytics