I want to simply "click" on a link using Capybara and Cucumber. I have an element that looks like this:
<a class="to-right" id="create-account-link" href="https://somewebsite.com/">Create account</a> //url is different when I test it
I tried the following two methods in my step definition:
page.find('[@id=create-account-link]').click //works
AND
page.find('#create-account-link').click //doesn't work
I would like to find out why the latter doesn't work. Any idea?