Closed
Bug 1218094
Opened 10 years ago
Closed 7 years ago
HTMLElement.tap() in marionette seems perform twice in Contacts app and b2g desktop client (43.0a1)
Categories
(Firefox OS Graveyard :: Simulator, defect)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: cs.castman, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36
Steps to reproduce:
1. Open b2g desktop client (b2g.exe - 43.0a1) first.
2. Execute the following code in cmd line window, line by line:
from marionette import Marionette
m = Marionette()
m.start_session()
home_frame = m.find_element('css selector', 'div.homescreen iframe')
m.switch_to_frame(home_frame)
m.find_element('xpath', "//div[contains(@class,'icon')]//span[contains(text(),'Contacts')]").tap()
m.switch_to_frame()
app_frame = m.find_element('css selector', "iframe[data-url*='contacts']")
m.switch_to_frame(app_frame)
m.find_element('id', 'add-contact-button').tap()
m.find_element('id', 'add-new-address').tap()
m.find_element('xpath', '//*[@id="add-address-0"]/button').tap()
Actual results:
The final tap() close the address form as expected, but additionally open the date form under the address form. It seems the tap() was executed twice in the same position on the screen.
Expected results:
The date form should not be opened.
| Reporter | ||
Updated•10 years ago
|
OS: Gonk (Firefox OS) → Windows 10
Hardware: ARM → x86_64
Comment 1•7 years ago
|
||
Firefox OS is not being worked on
Status: UNCONFIRMED → RESOLVED
Closed: 7 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•