Skip to content

Commit 9a65d4c

Browse files
committed
1 parent 9cb71e6 commit 9a65d4c

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

java/client/test/org/openqa/selenium/PageLoadingTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ public void testShouldFollowMetaRedirects() throws Exception {
196196
}
197197

198198
@Test
199+
@Ignore(value = CHROME, issue = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=2239")
199200
public void testShouldBeAbleToGetAFragmentOnTheCurrentPage() {
200201
driver.get(pages.xhtmlTestPage);
201202
driver.get(pages.xhtmlTestPage + "#text");

py/test/selenium/webdriver/common/page_loading_tests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ def testShouldWaitForDocumentToBeLoaded(driver, pages):
4040
# assert driver.title == "We Arrive Here"
4141

4242

43+
@pytest.mark.xfail_chrome(reason='https://bugs.chromium.org/p/chromedriver/issues/detail?id=2239')
4344
def testShouldBeAbleToGetAFragmentOnTheCurrentPage(driver, pages):
4445
pages.load("xhtmlTest.html")
4546
location = driver.current_url

0 commit comments

Comments
 (0)