I am using cucumber with ruby and capybara API for some of my automation tests.There is a scenario,where I need to simulate typing into one of my textboxes to validate values on live change.I have used 'set(value)' before.'fill_in' wasnt working for me since capybara was unable to find the id/name of my textbox. Rather than setting the value, is there any method that simulates typing and then set the value to textbox since the requirement here is to validate on live change.
Thanks in advance.