Bug 180419
Summary: | WebDriver: test imported/w3c/webdriver/tests/set_window_rect.py::test_height_width_larger_than_max fails | ||
---|---|---|---|
Product: | WebKit | Reporter: | Carlos Garcia Campos <cgarcia> |
Component: | WebDriver | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED DUPLICATE | ||
Severity: | Normal | CC: | bburg |
Priority: | P2 | ||
Version: | WebKit Nightly Build | ||
Hardware: | Unspecified | ||
OS: | Unspecified |
Carlos Garcia Campos
session = <webdriver.client.Session object at 0x7f2e044424d0>
def test_height_width_larger_than_max(session):
max = session.execute_script("""
return {
width: window.screen.availWidth,
height: window.screen.availHeight,
}""")
# step 12
response = set_window_rect(session, {"width": max["width"] + 100,
"height": max["height"] + 100})
# step 14
rect = assert_success(response)
> assert rect["width"] >= max["width"]
E assert 868 >= 1024
max = {'height': 768, 'width': 1024}
rect = {'height': 0, 'width': 868, 'x': 100, 'y': 450}
response = <Responsetatus=200 body={"value": {"y": 450, "x": 100, "height": 0, "width": 868}}>
session = <webdriver.client.Session object at 0x7f2e044424d0>
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Carlos Garcia Campos
*** This bug has been marked as a duplicate of bug 181728 ***