I'm learning Cucumber, but I can't make a step for just matching input tags.
What I have in the view is
<input type="submit" value="Press!" />
And what I tried in Cucumber are
Then the "input" field should contain "Press!"
Then the "type" field should contain "submit"
I just wanna confirm the existence for the input tags with certain values. No interaction.