我试图找到所有可以帮助我找到具有多个属性的元素的方法。例如,我有这样的观点:
<span class="n-check ng-isolate-scope ng-pristine ng-valid" ng-model="my_model" my_sp_at="1" my_attribute="my_attribute_value" tabindex="0">...</span>
我想找到具有属性的元素&#34; my_sp_at&#34;和&#34; my_attribute&#34;。而且我不确定找到它的最简单方法是使用by.xPath()。
element(by.xpath("//span[@my_sp_at='1' and @my_attribute='my_attribute_value']
我想知道我是否可以使用带有许多参数的by.css()或类似的东西?
我的目标是最大限度地避免阅读标记,标签名称等。