Ivo Dimitrov
Ivo Dimitrov
The aim of the PR is to bump rubocop version and to reduce to minimum rubocop offenses.
Errors due to deprecated methods: - Passing `include_secondary` with the 1st argument of `street_address` is deprecated. - Passing `name` with the 1st argument of `email` is deprecated.
My code in default.yml is: ``` forgot_password_page: email_address: ~email_address ``` and in forgot_password_page.rb is: ``` include PageObject include DataMagic def submit_forgot_password(data = {}) populate_page_with data_for(:forgot_password_page, data) end end ``` After...