[
https://issues.apache.org/jira/browse/CB-12501?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Alexander Sorokin updated CB-12501:
-----------------------------------
Description:
Currently Appium tests use XPath selectors, which are sloppy and buggy. For
example, we are forced to select certain elements quite a few times in a row to
get the one that we need:
{noformat}
return driver
.waitForElementByXPath('//android.widget.TextView[@text="Gallery"]', 20000)
.elementByXPath('//android.widget.TextView[@text="Gallery"]') // multiple
calls here for an Android bug:
.elementByXPath('//android.widget.TextView[@text="Gallery"]') // on Windows
+ Android emulator, element selection
.elementByXPath('//android.widget.TextView[@text="Gallery"]') // is
completely wonky. Unfortunately duplicating element()
.elementByXPath('//android.widget.TextView[@text="Gallery"]') // calls is
the only workaround identified thus far.
{noformat}
was:
Currently Appium tests use XPath selectors, which are sloppy and buggy. For
example, we are forced to select certain elements quite a few times in a row to
get the one that we need:
{noformat}
return driver
.waitForElementByXPath('//android.widget.TextView[@text="Gallery"]', 20000)
.elementByXPath('//android.widget.TextView[@text="Gallery"]') // multiple
calls here for an Android bug:
.elementByXPath('//android.widget.TextView[@text="Gallery"]') // on Windows
+ Android emulator, element selection
.elementByXPath('//android.widget.TextView[@text="Gallery"]') // is
completely wonky. Unfortunately duplicating element()
.elementByXPath('//android.widget.TextView[@text="Gallery"]') // calls is
the only workaround identified thus far.
{noformat}
> Don't use XPath selectors in Camera Appium tests for Android
> ------------------------------------------------------------
>
> Key: CB-12501
> URL: https://issues.apache.org/jira/browse/CB-12501
> Project: Apache Cordova
> Issue Type: Test
> Components: Appium, Plugin Camera
> Reporter: Alexander Sorokin
> Assignee: Alexander Sorokin
> Labels: triaged
>
> Currently Appium tests use XPath selectors, which are sloppy and buggy. For
> example, we are forced to select certain elements quite a few times in a row
> to get the one that we need:
> {noformat}
> return driver
> .waitForElementByXPath('//android.widget.TextView[@text="Gallery"]',
> 20000)
> .elementByXPath('//android.widget.TextView[@text="Gallery"]') // multiple
> calls here for an Android bug:
> .elementByXPath('//android.widget.TextView[@text="Gallery"]') // on
> Windows + Android emulator, element selection
> .elementByXPath('//android.widget.TextView[@text="Gallery"]') // is
> completely wonky. Unfortunately duplicating element()
> .elementByXPath('//android.widget.TextView[@text="Gallery"]') // calls is
> the only workaround identified thus far.
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]