Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9908)

Unified Diff: chrome/test/webdriver/test/chromedriver_tests.py

Issue 10704162: Disable 2 chromedriver tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/test/chromedriver_tests.py
diff --git a/chrome/test/webdriver/test/chromedriver_tests.py b/chrome/test/webdriver/test/chromedriver_tests.py
index 4d013b3445ddeece53a1a7f8876d77156a17487a..5b1ae0c049e1ccb5b34522678f8dd8f4e588d65c 100644
--- a/chrome/test/webdriver/test/chromedriver_tests.py
+++ b/chrome/test/webdriver/test/chromedriver_tests.py
@@ -498,12 +498,14 @@ class MouseTest(ChromeDriverTest):
self._driver.find_element_by_tag_name('a').click()
self.assertTrue(self._driver.execute_script('return window.success'))
- def testClickElementThatNeedsContainerScrolling(self):
+ # crbug.com/136875
+ def DISABLED_testClickElementThatNeedsContainerScrolling(self):
self._driver.get(self.GetTestDataUrl() + '/test_page.html')
self._driver.find_element_by_name('hidden_scroll').click()
self.assertTrue(self._driver.execute_script('return window.success'))
- def testClickElementThatNeedsIframeScrolling(self):
+ # crbug.com/136875
+ def DISABLED_testClickElementThatNeedsIframeScrolling(self):
self._driver.get(self.GetTestDataUrl() + '/test_page.html')
self._driver.switch_to_frame('iframe')
self._driver.find_element_by_name('hidden_scroll').click()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698