Is there a way for an input field to be cleared before entering some text into it. I'm fairly new to writing capybara with rspec and I have some trouble with masked input fields.
Here's the method I tried:
find('AddressZip').clear
fill_in('AddressZip', :with => '77487')
I tried searching for similar methods, but haven't found anything. Help would be much appreciated.