0
votes

I am trying to run my integration tests using RSpec and Capybara using the command "rspec spec" , it used to run fine until recently it just opens the browser and stays there until timeout.

Here is the test code :

it "should see payment error if payment amount is smaller than product price", :js => true do 

    visit("/")
    find_link("A new product").click

end
1
what changed between it working and now not working?Kevin Davis

1 Answers

1
votes

Do you change the version of your browser? If the browser version is not supported by webdriver, it might run into the case as you mentioned.