I have tried adding ' profile['network.manage-offline-status'] = true' but this doesn't seem to be turning the chrome browser to offline mode

        profile = Selenium::WebDriver::Chrome::Profile.new
        profile['default_search_provider.enabled'] = false
        profile['network.manage-offline-status'] = true
        profile['homepage'] = 'about:blank'
link|improve this question
feedback

1 Answer

Googling that profile setting, it looks like it's only a Firefox setting, so will have no effect on an instance of Chrome.

Reading a little about Chrome, it appears there is no simple option for going into an "offline mode".

You could test the functionality through watir-webdriver by manually disconnecting your computer from the Internet, but that's not a good solution for automated tests.

link|improve this answer
Yes, I found this for Firefox, but thought it would work for Chrome but to no avail. – Sel--ium Automater Feb 15 at 9:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.