summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/test/automation/dom_automation_browsertest.cc9
1 files changed, 8 insertions, 1 deletions
diff --git a/chrome/test/automation/dom_automation_browsertest.cc b/chrome/test/automation/dom_automation_browsertest.cc
index 502797d..a5f8209 100644
--- a/chrome/test/automation/dom_automation_browsertest.cc
+++ b/chrome/test/automation/dom_automation_browsertest.cc
@@ -31,7 +31,14 @@ class DOMAutomationTest : public InProcessBrowserTest {
typedef DOMElementProxy::By By;
-IN_PROC_BROWSER_TEST_F(DOMAutomationTest, FindByXPath) {
+#if defined(OS_WIN)
+// See http://crbug.com/61636
+#define MAYBE_FindByXPath FLAKY_FindByXPath
+#else
+#define MAYBE_FindByXPath FindByXPath
+#endif
+
+IN_PROC_BROWSER_TEST_F(DOMAutomationTest, MAYBE_FindByXPath) {
ASSERT_TRUE(test_server()->Start());
ui_test_utils::NavigateToURL(browser(),
GetTestURL("find_elements/test.html"));