我对appium相对较新,并积极参与poc。要求是从下拉列表中选择一个值,但是我可以单击微调器元素,但是下面的任何内容都无法识别我的uiautomator。因此,我无法从微调框元素中选择任何值。 我附加了脚本的代码块以及元素树快照。
//trying to click the dropdown list
try{
WebElement parentElement1 = driver.findElement(By.id("retProdOp0"));
WebElement childElement1 = parentElement1.findElement(By
.xpath("//android.view.View[@index='1']"));
childElement1.click();
driver.label("dropdown list 2nd element clicked");
}catch(Exception e){
driver.label("Failed to click dropdown list on prodexchg screen");
System.out.println(e.getMessage());
}

我想从Snapshot2中微调器的下拉列表中选择值。但是我无法在uiautomator中找到它们。寻求一些帮助。提前谢谢。
答案 0 :(得分:0)
您使用不正确的XPath定位器来选择下拉列表中的项目。
在uiautomator的屏幕截图中,很明显在点击下拉列表之前,其中的项目尚未包含在DOM中。因此,在父级中搜索是不正确的,因为它当时不包含元素。
List<WebElement> items = driver.findElements(By.xpath("//android.view.View"));
items.get(0).click();
或
driver.findElement(By.xpath("(//android.view.View)[1])
答案 1 :(得分:0)
尝试appium-desktop,但面临同样的问题。 Appium-desktop screenshot 1 Appium-desktop screenshot 2
请参阅第二个屏幕截图。感谢
答案 2 :(得分:0)
以下解决方案将为您提供帮助。让我知道是否可以。
driver.Context = "WebContext";
或
driver.Context = "CHROMIUM";
您的网络上下文名称可以不同 2.现在,就像使用Selenium Webdriver在Web中所做的一样选择元素
Select dropdown = new Select(driver.findElement(By.id("mySelect")));
dropdown.selectByVisibleText("Text");
注意:要查找webcontext的属性,您可以获取源代码或在浏览器中转到Web URL。
答案 3 :(得分:-1)
如果我理解正确,你有一个带有WebView的应用程序,显示HTML / JS中的下拉列表。
我加载https://www.w3schools.com/howto/howto_js_dropdown.asp作为示例,使用CulebraTester点击按钮然后点击“链接3”项来生成测试。
生成的脚本是
#! /usr/bin/env python
# -*- coding: utf-8 -*-
'''
Copyright (C) 2013-2018 Diego Torres Milano
Created on 2018-04-11 by CulebraTester
__ __ __ __
/ \ / \ / \ / \
____________________/ __\/ __\/ __\/ __\_____________________________
___________________/ /__/ /__/ /__/ /________________________________
| / \ / \ / \ / \ \___
|/ \_/ \_/ \_/ \ o \
\_____/--<
@author: Diego Torres Milano
@author: Jennifer E. Swofford (ascii art snake)
'''
import re
import sys
import os
import unittest
try:
sys.path.insert(0, os.path.join(os.environ['ANDROID_VIEW_CLIENT_HOME'], 'src'))
except:
pass
import pkg_resources
pkg_resources.require('androidviewclient>=12.4.0')
from com.dtmilano.android.viewclient import ViewClient, CulebraTestCase
from com.dtmilano.android.uiautomator.uiautomatorhelper import UiAutomatorHelper, UiScrollable, UiObject, UiObject2
TAG = 'CULEBRA'
class CulebraTests(CulebraTestCase):
@classmethod
def setUpClass(cls):
cls.kwargs1 = {'ignoreversioncheck': False, 'verbose': False, 'ignoresecuredevice': False}
cls.kwargs2 = {'forceviewserveruse': False, 'useuiautomatorhelper': True, 'ignoreuiautomatorkilled': True, 'autodump': False, 'startviewserver': True, 'compresseddump': True}
cls.options = {'start-activity': None, 'concertina': False, 'device-art': None, 'use-jar': False, 'multi-device': False, 'unit-test-class': True, 'save-screenshot': None, 'use-dictionary': False, 'glare': False, 'dictionary-keys-from': 'id', 'scale': 1, 'find-views-with-content-description': True, 'window': -1, 'orientation-locked': None, 'save-view-screenshots': None, 'find-views-by-id': True, 'log-actions': False, 'use-regexps': False, 'null-back-end': False, 'auto-regexps': None, 'do-not-verify-screen-dump': True, 'verbose-comments': False, 'gui': False, 'find-views-with-text': True, 'prepend-to-sys-path': False, 'install-apk': None, 'drop-shadow': False, 'output': None, 'unit-test-method': None, 'interactive': False}
cls.sleep = 5
def setUp(self):
super(CulebraTests, self).setUp()
def tearDown(self):
super(CulebraTests, self).tearDown()
def preconditions(self):
if not super(CulebraTests, self).preconditions():
return False
return True
def testSomething(self):
if not self.preconditions():
self.fail('Preconditions failed')
_s = CulebraTests.sleep
_v = CulebraTests.verbose
UiScrollable(self.vc.uiAutomatorHelper, uiSelector='clazz@android.webkit.WebView,index@0,parentIndex@0,package@com.android.chrome').getChildByText(uiSelector='text@Click Me', text="Click Me", allowScrollSearch=True).click()
UiScrollable(self.vc.uiAutomatorHelper, uiSelector='clazz@android.webkit.WebView,index@0,parentIndex@0,package@com.android.chrome').getChildByText(uiSelector='text@Link 3', text="Link 3", allowScrollSearch=True).click()
if __name__ == '__main__':
CulebraTests.main()
似乎工作正常。
如果您无法使用appium找到其他解决方案,可以尝试一下。