blob: 959ccc455ecdbd476874d546139816cc2955c7d8 [file] [log] [blame]
import pytest
from webdriver import WebElement
from tests.support.asserts import assert_error, assert_success
from tests.support.helpers import element_rect
def get_element_rect(session, element_id):
return session.transport.send(
"GET",
"session/{session_id}/element/{element_id}/rect".format(
session_id=session.session_id,
element_id=element_id,
)
)
def test_no_top_browsing_context(session, closed_window):
original_handle, element = closed_window
response = get_element_rect(session, element.id)
assert_error(response, "no such window")
response = get_element_rect(session, "foo")
assert_error(response, "no such window")
session.window_handle = original_handle
response = get_element_rect(session, element.id)
assert_error(response, "no such element")
def test_no_browsing_context(session, closed_frame):
response = get_element_rect(session, "foo")
assert_error(response, "no such window")
def test_no_such_element_with_invalid_value(session):
element = WebElement(session, "foo")
response = get_element_rect(session, element.id)
assert_error(response, "no such element")
def test_no_such_element_with_shadow_root(session, get_test_page):
session.url = get_test_page()
element = session.find.css("custom-element", all=False)
result = get_element_rect(session, element.shadow_root.id)
assert_error(result, "no such element")
@pytest.mark.parametrize("closed", [False, True], ids=["open", "closed"])
def test_no_such_element_from_other_window_handle(session, inline, closed):
session.url = inline("<div id='parent'><p/>")
element = session.find.css("#parent", all=False)
new_handle = session.new_window()
if closed:
session.window.close()
session.window_handle = new_handle
response = get_element_rect(session, element.id)
assert_error(response, "no such element")
@pytest.mark.parametrize("closed", [False, True], ids=["open", "closed"])
def test_no_such_element_from_other_frame(session, get_test_page, closed):
session.url = get_test_page(as_frame=True)
frame = session.find.css("iframe", all=False)
session.switch_frame(frame)
element = session.find.css("div", all=False)
session.switch_frame("parent")
if closed:
session.execute_script("arguments[0].remove();", args=[frame])
response = get_element_rect(session, element.id)
assert_error(response, "no such element")
@pytest.mark.parametrize("as_frame", [False, True], ids=["top_context", "child_context"])
def test_stale_element_reference(session, stale_element, as_frame):
element = stale_element("input#text", as_frame=as_frame)
result = get_element_rect(session, element.id)
assert_error(result, "stale element reference")
def test_basic(session, inline):
session.url = inline("<input>")
element = session.find.css("input", all=False)
result = get_element_rect(session, element.id)
assert_success(result, element_rect(session, element))