2013-03-18 50 views

回答

4

你可以嘗試像下面其中司機是webdriver的對象 -

WebElement webElement = driver.findElement(By.id("yui-gen56")); 
webElement.getAttribute("class"); 
+0

簡單和最終的工作解決方案,謝謝Bhushan! 乾杯! – Srivastava 2013-03-18 07:00:56

1

嘗試......

WebElement cssValue = driver.findelement(By.cssSelector("[id='yui-gen56'][class='ir i-doc']")); 
String Value = divElement.getText(); 
System.out.println(Value); 

它幫助我在尋找的價值css類..

相關問題