我正在使用tickvals
Androidviewclient
,我希望在函数version 11.5.6
函数中一次搜索多个名称。有可能findVeiwwithtext
??
答案 0 :(得分:0)
是的,findViewWithTextOrRaise()
接受RegexType
(请参阅re)作为参数,以便您可以使用模式,如果您的目的是匹配多个视图。
作为起点,您可以调用culebra --use-regexps ...
,它将生成这样的语句
no_id26 = self.vc.findViewWithTextOrRaise(re.compile(u'Phone'))
您可以轻松适应您的需求。例如
no_id26 = self.vc.findViewWithTextOrRaise(re.compile(u'(Phone)|(Settings)'))
这将匹配手机或设置。