2014-06-30 71 views

回答

2

這是一個java問題,而不是Selenium問題。您可以使用:

driver.findElement(By...locator).getText().toInteger() // this works in Groovy only 

,或者您可以使用

Integer.parseInt(driver.findElement(By...locator).getText()); // this works in Java or Groovy 
+0

第二個選項適合我,非常感謝。 – cakes88

+1

第一個選項不會編譯 - toInteger()不是可以從字符串中調用的方法。 –

+2

@TJamesBoone對於Java來說是對的。我在Groovy中編寫了大部分測試,在這裏整天工作。 – SiKing