Update web-platform-tests to revision e8bfc205e36ad699601212cd50083870bad9a75d

This commit is contained in:
Ms2ger 2016-11-14 11:07:09 +01:00
parent 65dd6d4340
commit ccdb0a3458
1428 changed files with 118036 additions and 9786 deletions

View file

@ -1,27 +1,75 @@
def test_resize(session):
import json
import pytest
import webdriver
@pytest.mark.xfail(raises=webdriver.UnsupportedOperationException)
def test_window_size_types(http, session):
session.start()
with http.get("/session/%s/window/size" % session.session_id) as resp:
assert resp.status == 200
body = json.load(resp)
assert "width" in body
assert "height" in body
assert isinstance(body["width"], int)
assert isinstance(body["height"], int)
size = session.window.size
assert isinstance(size, tuple)
assert isinstance(size[0], int)
assert isinstance(size[1], int)
@pytest.mark.xfail(raises=webdriver.UnsupportedOperationException)
def test_window_resize(session):
# setting the window size by webdriver is synchronous
# so we should see the results immediately
session.window.size = (200, 100)
assert session.window.size == {"width": 100, "height": 200}
session.window.size = (400, 500)
assert session.window.size == (400, 500)
session.window.size = (100, 200)
assert session.window.size == {"width": 200, "height": 100}
session.window.size = (500, 600)
assert session.window.size == (500, 600)
def test_resize_by_script(session):
"""
TODO(ato):
Disable test because the while statements are wrong.
To fix this properly we need to write an explicit wait utility.
def test_window_resize_by_script(session):
# setting the window size by JS is asynchronous
# so we poll waiting for the results
size0 = session.window.size
session.execute_script("window.resizeTo(100, 200)")
session.execute_script("window.resizeTo(700, 800)")
size1 = session.window.size
while size0 == size1:
size1 = session.window.size
assert size1 == {"width": 100, "height": 200}
assert size1 == (700, 800)
session.execute_script("window.resizeTo(200, 100)")
session.execute_script("window.resizeTo(800, 900)")
size2 = session.window.size
while size1 == size2:
size2 = session.window.size
assert size2 == (800, 900)
assert size2 == {"width": 200, "height": 100}
"""
@pytest.mark.xfail(raises=webdriver.UnsupportedOperationException)
def test_window_position_types(http, session):
session.start()
with http.get("/session/%s/window/position" % session.session_id) as resp:
assert resp.status == 200
body = json.load(resp)
assert "x" in body
assert "y" in body
assert isinstance(body["x"], int)
assert isinstance(body["y"], int)
size = session.window.position
assert isinstance(size, tuple)
assert isinstance(size[0], int)
assert isinstance(size[1], int)