I have come across two projects one is with WATIR
cucumber feature files
and step definitions
and another one is Rspec
, capybara`` without
step definitionsand
feature files`.
In WATIR
project page_object
was used and in capybara
site_prism gem
was used.
- What is the difference between two?
- Can't we use
page_object
incapybara
would that be incorrect approach? Why?