繁体   English   中英

如何在 Capybara 中重新抓取页面?

[英]How to rescrape a page in Capybara?

这是我对使用按钮触发一些 Javascript 以展开截断的description文本的页面的规范。

     it 'gets the description and inventory', js: true do
      product = Product.create!(name: "Test Product", inventory: 0, description: "This is a test description with more text than should be there.")
      customer = Customer.create(:name => Faker::Name.name)
      invoice = Invoice.create
      order = Order.create(customer: customer, invoice: invoice)

      order.products << product
      visit products_path
      expect(page).to have_content(product.name, count: 1)
      expect(page).not_to have_content product.description
      click_button "More Info"
      expect(page).to have_content product.description
      expect(page).to have_content "Sold Out"
      product.inventory = 1
      product.save
      visit products_path
      click_button "More Info"
      expect(page).to have_content "Available"
    end

当我运行 Rails 服务器并访问浏览器中的页面时,“更多信息”按钮肯定可以正常工作。 但是,当我运行规范时,该按钮似乎不起作用:

  1) Products products index gets the description and inventory
     Failure/Error: expect(page).to have_content product.description
       expected to find text "This is a test description with more text than should be there." in "Flatiron Widgets Store Products Test Product This is a test description ... More Info"
     # ./spec/features/product_feature_spec.rb:47:in `block (3 levels) in <top (required)>'

现在,我知道完全有可能是有一些问题导致按钮实际上不起作用,但我想知道问题是否真的是因为我们正在检查一个自按钮之前就没有被刮过的page点击。

有谁知道这是否确实是问题所在,如果是,有没有办法“重新刮擦”页面? 我不打算重新加载或刷新页面,因为这会将 JS 置于其初始按钮前状态。

假设这是一个功能测试,并且您需要capybara/rspec如 Capybara README 中所示,那么 Capybara 应该看到测试中的js元数据,切换到Capybara.javascript_driver配置的驱动程序(默认为 :selenium - 这将打开 Firefox)和无需重新加载/刷新/重新抓取页面,因为 Capybara 从不缓存页面(每次您检查文本时,它都会针对浏览器中的实时页面)。

如果以上都是正确的并且您看到此问题,那么您的页面上有错误,或者您正在使用过时的驱动程序(Poltergeist 等)来运行不支持您使用的 JS 的测试实际在您的页面中使用。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM