~canonical-platform-qa/snappy-ecosystem-tests/dont-install-chromedriver

« back to all changes in this revision

Viewing changes to snappy_ecosystem_tests/helpers/web_test_base.py

  • Committer: Omer Akram
  • Date: 2017-04-03 17:28:27 UTC
  • Revision ID: om26er@ubuntu.com-20170403172827-y4dlyx6i5tc0xfb9
no proxy

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
        super().setUp()
52
52
        options = webdriver.ChromeOptions()
53
53
        options.add_argument("--start-maximized")
54
 
        options.add_argument('--proxy-server={}'.format('127.0.0.1:3128'))
 
54
        #options.add_argument('--proxy-server={}'.format('127.0.0.1:3128'))
55
55
        self.driver = webdriver.Chrome(chrome_options=options)
56
56
 
57
57
    def wait_for_element(self, locator, timeout=PAGE_LOAD_TIMEOUT):