Bug 182331
Summary: | WebDriver: tests in imported/w3c/webdriver/tests/element_send_keys/form_controls.py fail since added | ||
---|---|---|---|
Product: | WebKit | Reporter: | Carlos Garcia Campos <cgarcia> |
Component: | WebDriver | Assignee: | Nobody <webkit-unassigned> |
Status: | NEW | ||
Severity: | Normal | CC: | bburg, dpino, mcatanzaro |
Priority: | P2 | ||
Version: | WebKit Nightly Build | ||
Hardware: | Unspecified | ||
OS: | Unspecified |
Carlos Garcia Campos
Similar bt in all the cases:
WebDriverTests/imported/w3c/webdriver/tests/element_send_keys/form_controls.py::test_input FAILED
WebDriverTests/imported/w3c/webdriver/tests/element_send_keys/form_controls.py::test_textarea FAILED
WebDriverTests/imported/w3c/webdriver/tests/element_send_keys/form_controls.py::test_input_append FAILED
WebDriverTests/imported/w3c/webdriver/tests/element_send_keys/form_controls.py::test_textarea_append FAILED
WebDriverTests/imported/w3c/webdriver/tests/element_send_keys/form_controls.py::test_events[input] FAILED
WebDriverTests/imported/w3c/webdriver/tests/element_send_keys/form_controls.py::test_events[textarea] FAILED
_________________________________________________________________________________________ test_input _________________________________________________________________________________________
session = <webdriver.client.Session object at 0x7fc628a01050>
def test_input(session):
session.url = inline("<input>")
element = session.find.css("input", all=False)
assert element.property("value") == ""
element_send_keys(session, element, "foo")
> assert element.property("value") == "foo"
E AssertionError: assert '' == 'foo'
E + foo
element = <webdriver.client.Element object at 0x7fc628a01350>
session = <webdriver.client.Session object at 0x7fc628a01050>
WebDriverTests/imported/w3c/webdriver/tests/element_send_keys/form_controls.py:36: AssertionError
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Michael Catanzaro
These three are all consistently passing now:
imported/w3c/webdriver/tests/element_send_keys/form_controls.py::test_input
imported/w3c/webdriver/tests/element_send_keys/form_controls.py::test_textarea
imported/w3c/webdriver/tests/element_send_keys/form_controls.py::test_textarea_append
Diego Pino
After https://trac.webkit.org/changeset/259791/webkit, there's only one test failing now:
imported/w3c/webdriver/tests/element_send_keys/form_controls.py::test_input_append