appium 的此会话问题不支持定位器策略“css 选择器" [英] Locator Strategy 'css selector' is not supported for this session issue with appium

查看:38
本文介绍了appium 的此会话问题不支持定位器策略“css 选择器"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

由于我是移动自动化的新手,我一直在尝试使用 appium maven 和 eclipse 运行简单的活动.但是当我尝试运行计算器应用程序时打开但无法访问元素.

Since I'm new to mobile automation, I've been trying to run simple activities using appium maven and eclipse. But When I try to run Calculator app opens but the elements are not accessible.

这是我用来运行一个简单计算器的代码

This the code I used to run a simple calculator

  @BeforeClass
 public void setUp() throws MalformedURLException {

    DesiredCapabilities capabilities = new DesiredCapabilities();
    capabilities.setCapability("BROWSER_NAME", "Android");
    capabilities.setCapability("VERSION", "4.4.2");
    capabilities.setCapability("deviceName", "Emulator");
    capabilities.setCapability("platformName", "Android");

    capabilities.setCapability("appPackage", "com.android.calculator2");

    capabilities.setCapability("appActivity", "com.android.calculator2.Calculator");

    driver = new RemoteWebDriver(new URL("http://0.0.0.0:4723/wd/hub"), capabilities);
}

@Test
public void testCal() throws Exception {

    WebElement two = driver.findElement(By.name("2"));
    two.click();

}

@AfterClass
public void teardown() {

}

我使用的是最新的稳定依赖项.io.appium java-client 7.0.0 和org.testng testng 6.14.3

I am using the latest stable dependencies. io.appium java-client 7.0.0 and org.testng testng 6.14.3

FAILED: testCal
org.openqa.selenium.InvalidSelectorException: Locator Strategy 'css 
selector' is not supported for this session
For documentation on this error, please visit: 
https://www.seleniumhq.org/exceptions/invalid_selector_exception.html
Driver info: org.openqa.selenium.remote.RemoteWebDriver
Capabilities {BROWSER_NAME: Android, VERSION: 4.4.2, appActivity: 
com.android.calculator2.Cal..., appPackage: com.android.calculator2, 
databaseEnabled: false, desired: {BROWSER_NAME: Android, VERSION: 4.4.2, 
appActivity: com.android.calculator2.Cal..., appPackage: 
com.android.calculator2, deviceName: Emulator, platformName: android}, 
deviceManufacturer: HUAWEI, deviceModel: FLA-LX2, deviceName: 
HXT7N18521000819, deviceScreenSize: 1080x2160, deviceUDID: 
HXT7N18521000819, javascriptEnabled: true, locationContextEnabled: false, 
networkConnectionEnabled: true, platform: LINUX, platformName: LINUX, 
platformVersion: 8.0.0, takesScreenshot: true, warnings: {}, 
webStorageEnabled: false}
Session ID: a604a166-3c0d-4e9c-a3e4-9b1ea734bee6
*** Element info: {Using=name, value=2}
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown 
Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at...

推荐答案

Appium 不是 Selenium:它们都使用 JSON 线协议实现并且具有相似的 API,但不相同:

Appium is not Selenium: they both implemented using JSON wire protocol and has similar APIs, but not the same ones:

原生安卓应用支持的定位器策略:

Supported locator strategies for Native android app:

  • id (resource-id View 属性);
  • accessbilityId(content-desc 视图属性);
  • uiAutomator(最好阅读UiSelector);
  • className (ui 组件类型);
  • XPath.

因此您不能对 Android 驱动程序会话使用 By.name 定位器策略,它不受支持.

So you cannot use By.name locator strategy for Android driver session, it's not supported.

为了简单起见,我建议在 Appium 原生测试中使用 MobileBy 代替 By:您将获得正确的选项.

To make it easy, I suggest using MobileBy in place of By in Appium native tests: you will get the proper options.

这篇关于appium 的此会话问题不支持定位器策略“css 选择器"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆