author | Henrik Skupin <mail@hskupin.info> |
Thu, 02 Nov 2017 08:43:26 +0100 | |
changeset 440556 | b5a3b8ef6902998507fc881b6d628b055457fe31 |
parent 440555 | cb05c80b965520825841dfa003177790faff635b |
child 440561 | 10777aa50c49e929145fcd84a10892c0db099862 |
child 440568 | a86ac3dafdf5b4fc5e874dce2be0c1ab87a2ec72 |
push id | 8114 |
push user | jlorenzo@mozilla.com |
push date | Thu, 02 Nov 2017 16:33:21 +0000 |
treeherder | mozilla-beta@73e0d89a540f [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | test-fix, test-fix |
bugs | 1413821 |
milestone | 58.0a1 |
first release with | nightly linux32
b5a3b8ef6902
/
58.0a1
/
20171102100041
/
files
nightly mac
b5a3b8ef6902
/
58.0a1
/
20171102100041
/
files
nightly win32
b5a3b8ef6902
/
58.0a1
/
20171102100041
/
files
nightly win64
b5a3b8ef6902
/
58.0a1
/
20171102100041
/
files
nightly linux64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
releases | nightly linux32
58.0a1
/
20171102100041
/
pushlog to previous
nightly mac
58.0a1
/
20171102100041
/
pushlog to previous
nightly win32
58.0a1
/
20171102100041
/
pushlog to previous
nightly win64
58.0a1
/
20171102100041
/
pushlog to previous
|
testing/marionette/harness/marionette_harness/tests/unit/test_click.py | file | annotate | diff | comparison | revisions |
--- a/testing/marionette/harness/marionette_harness/tests/unit/test_click.py +++ b/testing/marionette/harness/marionette_harness/tests/unit/test_click.py @@ -135,17 +135,20 @@ class TestLegacyClick(MarionetteTestCase # This tests that the pointer-interactability test does not # cause an ElementClickInterceptedException. # # At a <select multiple>'s in-view centre point, you might # find a fully rendered <option>. Marionette should test that # the paint tree at this point _contains_ <option>, not that the # first element of the paint tree is _equal_ to <select>. select.click() - self.assertNotEqual(select.get_property("selectedIndex"), -1) + + # Bug 1413821 - Click does not select an option on Android + if self.marionette.session_capabilities["browserName"] != "fennec": + self.assertNotEqual(select.get_property("selectedIndex"), -1) def test_container_is_select(self): self.marionette.navigate(inline(""" <select> <option>foo</option> </select>""")) option = self.marionette.find_element(By.TAG_NAME, "option") option.click()