ruby-on-rails 如何使用Rspec、Capybara和Chromedriver为模态设置系统测试

t1qtbnec  于 2023-08-08  发布在  Ruby
关注(0)|答案(1)|浏览(135)

我是新手,我目前的理解是,你不能把JavaScript和Rspec测试混合在一起(?).
对于我的第一个Rspec/Capybara系统测试,我希望用户登录,然后单击模态链接以查看模态是否存在(稍后与模态交互)。
相关的宝石(这是一个旧的2017年项目)

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug', platform: :mri
  gem 'rspec-rails', '~> 3.5.0'
  gem 'puma', '~> 3.0'
end

group :test do
  gem 'capybara', '~> 3.6.0'
  gem 'factory_girl_rails', '~> 4.7'
  gem 'faker'
  gem 'selenium-webdriver', '~> 3.0.0'
  gem "database_cleaner", "~> 1.5"
  gem 'shoulda-matchers', '~> 3.1'
  gem 'launchy'
end

字符串
rspec

scenario "Fans in Canada can sign in, visit signed in home page, and log out in" do

    create_fan_in_canada

    visit root_path

    #fist LOG IN link
    within('#myNavbar') do
      expect(page).to have_link "LOG IN"
    end

    #second LOG IN link
    within('.follow-login') do
      expect(page).to have_link "LOG IN"
    end

    within('#myNavbar') do
      click_link('LOG IN')
    end  

    fill_in "Email", with: @fan.email
    fill_in "Password", with: @fan.password
    click_button "Sign in"
    find('.dropdown-toggle').click
    expect(page).to have_link "Logout"
    expect(page).to have_current_path root_path

    ## MODAL TEST ##

    find('#actionLink').click
    within('#actionModal') do
      page.should have_content('#fan1') 
    end
    expect(page).to have_css '#fan1'

    ## MODAL TEST END ##

    click_link "Logout"
    expect(page).to have_css '#splash_page_loads'
  end

 ############
 ############


Selenium chromedrive是按照Selenium文档下载并放在一个路径文件中的,这个rails-helper代码由this blog提供。

Capybara.register_driver :selenium_chrome do |app|
  Capybara::Selenium::Driver.new(app, browser: :chrome)
end

Capybara.javascript_driver = :selenium_chrome


结果如下:
如果不包括## MODAL TEST ##代码,测试通过。
如果我包括## MODAL TEST ##,则测试失败,控制器将显示以下错误:

Failures:

  1) Splash and devise: Fans in Canada can sign in, visit signed in home page, and log out in
     Failure/Error:
       respond_to do |format|
         format.js    # this goes to actionMain.js.erb
       end
     
     ActionController::UnknownFormat:
       ActionController::UnknownFormat
     # ./app/controllers/actionmodal_controller.rb:41:in `actionMain'


如果我将:js => true添加到scenerio中,我会得到以下错误:

Failures:

  1) Splash and devise: Fans in Canada can sign in, visit signed in home page, and log out in
     Failure/Error:
       within('#myNavbar') do
         expect(page).to have_link "LOG IN"
       end
     
     NameError:
       uninitialized constant Selenium::WebDriver::Error::ElementNotInteractableError


让我相信我要么设置错误,要么我不得不在它自己的单独场景中添加模态测试,专门用于JavaScript Chromedriver。
如果我这样做了,但是,我将无法登录用户事先等,将需要存根他们也许,但我也有多个模式与许多链接,他们改变了模式的内容,我也想测试以后,其中我不相信处理Chromedriver.
如何设置水豚和Rspec,以便在常规系统测试中可以毫无瑕疵地打开模态?因为只处理Chromedriver或其他在广泛的系统测试中处理正常用户操作似乎不正确。

iyzzxitl

iyzzxitl1#

名称错误:未初始化常量Selenium::WebDriver::Error::ElementNotInteractableError
可能是由于使用了Capybara和selenium-webdriver的不兼容版本造成的。

相关问题