2017-02-28 79 views
0

當我這樣做:硒webdriver。幫助起草一份循環使用,如果其他

if (driver.FindElementByXPath("//android.widget.RelativeLayout[contains(@resource-id, 'rl_ali_sign_in_btn')]").size()>0) 
else {} 

我收到:

OpenQA.Selenium.IWebElement "does not contain a definition for the" size " 

我需要檢查的元素的存在,如果再存在做一個動作

回答

4

這是因爲findElementByXPath()未返回List而是WebElement。你需要使用的是findElementsByXPath()(元素,而不是元素)。