我想简单地“点击”使用 Capybara 和 Cucumber 的链接。我有一个看起来像这样的元素:
<a class="to-right" id="create-account-link" href="https://somewebsite.com/">Create account</a> //url is different when I test it
我在步骤定义中尝试了以下两种方法:
page.find('[@id=create-account-link]').click //works
AND
page.find('#create-account-link').click //doesn't work
我想知道为什么后者不起作用。任何的想法?