技術系ブログ

とにかく小ネタで

【Rspec】Capybara::Ambiguous: Ambiguous match, found 2 elements matching visible link

Rspec中にタイトルのようなエラーが出た場合,match: :firstで解決する
実例

    it "説明ページに遷移" do
      click_link "お絵かきBOXとは",match: :first
      expect(current_path).to eq pages_about_path
    end

一画面にお絵かきBOXとはというリンクボタンが2つある状況だったんですが解決しました。