需要有关 Rspec 示例的帮助

发布于 2024-11-17 21:30:14 字数 295 浏览 3 评论 0原文

任何人都可以有更具描述性的 Rspec 示例吗?我使用了网站 https://gist.github.com/1053934 中的示例,效果非常好。但我想了解更多信息,例如访问网站 X(例如 Google)->在文本字段中输入数据(例如 Ruby) 检查 HTML 列表中是否有 Ruby 可用?

任何人都可以拥有可以在 Rspec 上运行的脚本,该脚本将生成有关案例的通过失败状态的报告吗?

我感谢所有提前的回复。

Can any one have more descriptive example of Rspec? I used the the example from site https://gist.github.com/1053934 works very fine. But i want to learn more like go to site X (eg. Google) -> enter data in text field (eg. Ruby)
Check for the HTML is Ruby available in the list?

Can any one have script that i can run on Rspec and that will generate report on that pass fail status of case.

I appreciate all the responses in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦醒时光 2024-11-24 21:30:14

这是一个完整的示例,由 Watir 文档 提供。

require "rubygems"
require "rspec"

describe "google.com" do
  let(:browser)       { @browser ||= Watir::Browser.new :firefox }

  before { browser.goto "http://google.com" }
  after  { browser.close }

  it "should search for watir" do
    browser.text_field(:name => "q").set "watir"
    browser.button.click
    browser.div(:id => "resultStats").wait_until_present
    browser.title.should == "watir - Google Search"
  end
end

Here's a complete example, courtesy of Watir docs.

require "rubygems"
require "rspec"

describe "google.com" do
  let(:browser)       { @browser ||= Watir::Browser.new :firefox }

  before { browser.goto "http://google.com" }
  after  { browser.close }

  it "should search for watir" do
    browser.text_field(:name => "q").set "watir"
    browser.button.click
    browser.div(:id => "resultStats").wait_until_present
    browser.title.should == "watir - Google Search"
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文