Barne Kleinen
Barne Kleinen
If you have a look at the Moment Documentation, it is already included: https://momentjs.com/docs/#/displaying/format/ Week of Year | w | 1 2 ... 52 53 | wo | 1st 2nd...
Issue: https://github.com/teamcapybara/capybara/issues/2772
From my understanding, Capybara already uses the replacement if the methods have been removed: if @browser.respond_to? :session_storage @browser.session_storage.clear else ... call js methods directly -> thus, I see no need...
this fixed it for me in rails: ``` driven_by :selenium, using: config.driver, screen_size: [1400, 1400], options: config.driver_options do |driver_option| driver_option.add_argument('--disable-search-engine-choice-screen') end ```