From 100792146d878dff51e7c4eadb14454b395e4cc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Andersson?= Date: Tue, 26 Jul 2016 12:19:37 +0800 Subject: [PATCH] Click on the first matching product link Both the image and the text link are matched and clicking on either is fine, so do it. This fixes issue #176. --- spec/features/paypal_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/features/paypal_spec.rb b/spec/features/paypal_spec.rb index a5bb8c0a..53c5b420 100644 --- a/spec/features/paypal_spec.rb +++ b/spec/features/paypal_spec.rb @@ -47,7 +47,7 @@ def within_transaction_cart(&block) def add_to_cart(product) visit spree.root_path - click_link product.name + click_link product.name, match: :first click_button 'Add To Cart' end