2015-01-21 55 views

回答

3

與XPath得到它

//span[@aria-label="To - Select Contacts"] 
0

您也可以使用此XPath

//span[@data-tooltip = 'Select Contacts'] 
1

您可以使用CSS選擇器。 Smth像這樣:

//If class name is permanent and there is single instance on the page 
driver.findElement(By.Css(".gO aQY")) 
//otherwise 
driver.findElement(By.Css("span[aria-label='To - Select Contacts']")) 

請參閱this鏈接瞭解更多信息。