Appium (Webdriver.io) не может найти элемент по xpath - PullRequest
0 голосов
/ 08 мая 2018

Я новичок в Appium, поэтому могу сделать что-то не так = (

технологии: TypeScript + Appium (wd.io) + Жасмин

Но я застрял с получением ошибки:

Жасминовые бревна:

An element could not be located on the page using the given search parameters ("//android.view.ViewGroup[@resource-id="com.app.dev.debug:id/toolbar"]//android.widget.TextView")

Аппиевые журналы:

[HTTP] --> POST /wd/hub/session/03ca8b58-7487-4ef6-9b81-8287a23c4a48/element {"using":"xpath","value":"//android.view.ViewGroup[@resource-id=\"com.app.dev.debug:id/toolbar\"]//android.widget.TextView"}
[debug] [MJSONWP] Calling AppiumDriver.findElement() with args: ["xpath","//android.view.ViewGroup[@resource-id=\"com.app.dev.debug:id/toolbar\"]//android.widget.TextView","03ca8b58-7487-4ef6-9b81-8287a23c4a48"]
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[debug] [BaseDriver] Waiting up to 0 ms for condition
[debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"xpath","selector":"//android.view.ViewGroup[@resource-id=\"com.app.dev.debug:id/toolbar\"]//android.widget.TextView","context":"","multiple":false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"xpath","selector":"//android.view.ViewGroup[@resource-id=\"com.app.dev.debug:id/toolbar\"]//android.widget.TextView","context":"","multiple":false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding '//android.view.ViewGroup[@resource-id="com.app.dev.debug:id/toolbar"]//android.widget.TextView' using 'XPATH' with the contextId: '' multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding '//android.view.ViewGroup[@resource-id="com.app.dev.debug:id/toolbar"]//android.widget.TextView' using 'XPATH' with the contextId: '' multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
[debug] [AndroidBootstrap] Received command result from bootstrap
[HTTP] <-- POST /wd/hub/session/03ca8b58-7487-4ef6-9b81-8287a23c4a48/element 500 232 ms - 164 

при поиске элемента по xpath.

элементы дерева прилагается: elements tree

Пример кода ниже:

const deviceOptions: ServiceOptions = {
  desiredCapabilities: {
    platformName: 'android',
    app: './app-dev-debug.apk',
    appPackage: 'com.app.dev.debug',
    appActivity: 'com.app.dev.feature.start.StartActivity',
    avdReadyTimeout: 1000,
    udid: 'LGK350RGNBS4TS',
    deviceName: 'LG-K350',
    clearSystemFiles: true,
    newCommandTimeout: 120
  },
    host: 'localhost',
    port: 4723
  };
}

const driver = remote(deviceOptions);

const selector = '//android.view.ViewGroup[@resource-id="com.app.dev.debug:id/toolbar"]//android.widget.TextView';

it('test', () =>
  driver.init().element(selector).getText().then(text => expect(text).toBe('myText'))
);

Что здесь не так? Как заставить это работать?

Ответы [ 2 ]

0 голосов
/ 09 мая 2018

нашел решение: добавлен .waitForExist (селектор)

it('test', () =>
  driver.init().waitForExist(selector).element(selector).getText().then(text => 
expect(text).toBe('myText'))
);
0 голосов
/ 08 мая 2018

Похоже, что в вашем селекторе вы не указали, какой 'By' должен использоваться для поиска элемента.

Пожалуйста, попробуйте следующий способ

it('test', () =>
  driver.init().element(by.xpath(selector)).getText().then(text => 
expect(text).toBe('myText'))
);

Надеюсь, это поможет

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...