watir-rspec是否适用于watir或watir-webdriver?
我目前正在使用watir和rspec。
我正在尝试设置watir-rspec,这样我就可以使用html-formatter并截取屏幕截图并将其嵌入我的html日志文件中。
我已阅读github上的自述文件,并声明“将这些行添加到spec_helper.rb文件中”
我只是不确定它所指的spec_helper.rb文件的位置和位置。
它要添加的代码如下:
RSpec.configure do |config|
# Add Watir::RSpec::HtmlFormatter to get links to the screenshots, html and
# all other files created during the failing examples.
config.add_formatter('documentation')
config.add_formatter(Watir::RSpec::HtmlFormatter)
# Open up the browser for each example.
config.before :all do
@browser = Watir::Browser.new
end
# Close that browser after each example.
config.after :all do
@browser.close if @browser
end
# Include RSpec::Helper into each of your example group for making it possible to
# write in your examples instead of:
# @browser.goto "localhost"
# @browser.text_field(:name => "first_name").set "Bob"
#
# like this:
# goto "localhost"
# text_field(:name => "first_name").set "Bob"
#
# This needs that you've used @browser as an instance variable name in
# before :all block.
config.include Watir::RSpec::Helper
end
答案 0 :(得分:4)
由于watir-classic和watir-webdriver共享相同的API,因此watir-rspec应与两者兼容。
spec_helper.rb
通常是您为rspec套件编写任何配置的地方。然后,每个spec文件都需要此文件。
例如,您可以看到watirspec中使用的spec_helper.rb
,这是watir-classic和watir-webdriver的大多数规范 - 请参阅https://github.com/watir/watirspec。
可能有助于您了解spec_helper.rb
的一些教程: