id:根据元素的id属性进行定位,使用locator=id=value进行定位。例如:id=elementId
name:根据元素的name属性进行定位,使用locator=name=value进行定位。例如:name=elementName
class:根据元素的class属性进行定位,使用locator=class=value进行定位。例如:class=elementClass
link:根据链接文本进行定位,使用locator=link=value进行定位。例如:link=click here
partialLink:根据链接文本的部分内容进行定位,使用locator=partialLink=value进行定位。例如:partialLink=click
css:根据元素的CSS选择器进行定位,使用locator=css=selector进行定位。例如:css=div.container > p
xpath:根据元素的XPath进行定位,使用locator=xpath=xpathExpression进行定位。例如:xpath=//input[@name='firstName']
dom:根据元素的DOM元素属性进行定位,使用locator=dom=expression进行定位。例如:dom=document.getElementById('elementId')