Bug 180417 - WebDriver: test imported/w3c/webdriver/tests/set_window_rect.py::test_height_width fails
Summary: WebDriver: test imported/w3c/webdriver/tests/set_window_rect.py::test_height_...
Status: RESOLVED DUPLICATE of bug 181728
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebDriver (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-12-05 04:06 PST by Carlos Garcia Campos
Modified: 2018-01-23 01:10 PST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Carlos Garcia Campos 2017-12-05 04:06:22 PST
response = <Responsetatus=200 body={"value": {"y": 450, "x": 100, "height": 0, "width": 668}}>, value = {'height': 668, 'width': 924, 'x': 100, 'y': 450}

    def assert_success(response, value=None):
        """
        Verify that the provided webdriver.Response instance described
        a valid error response as defined by `dfn-send-an-error` and
        the provided error code.
    
        :param response: ``webdriver.Response`` instance.
        :param value: Expected value of the response body, if any.
        """
        assert response.status == 200, str(response.error)
    
        if value is not None:
>           assert response.body["value"] == value
E           AssertionError

response   = <Responsetatus=200 body={"value": {"y": 450, "x": 100, "height": 0, "width": 668}}>
value      = {'height': 668, 'width': 924, 'x': 100, 'y': 450}
Comment 1 Carlos Garcia Campos 2018-01-23 01:10:31 PST

*** This bug has been marked as a duplicate of bug 181728 ***