Selenium webdriver provides one method called - getCssValue() which can be used to read the value of any web element's style attribute in Selenium Webdriver in Java.
String actualValue = c.getCssValue("width");
above code will return the value of the style attribute - width of the webelement c in selenium webdriver.
Full example in Java with selenium webdriver
Please note that we can get the value of style attribute of all other web elements like button, checkbox, radiobutton, checkbox, combobox in similar way using getCssValue method in Java using selenium webdriver.
What do you think on above selenium topic. Please provide your inputs and comments. You can write to me at reply2sagar@gmail.com
String actualValue = c.getCssValue("width");
above code will return the value of the style attribute - width of the webelement c in selenium webdriver.
Full example in Java with selenium webdriver
package temp;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.support.ui.Select;
public class first {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.setProperty("webdriver.chrome.driver", "C:\\Selenuim\\chromedriver2.3.exe");
WebDriver driver = new ChromeDriver();
try{
driver.get("http://register.rediff.com/register/register.php");
Thread.sleep(2000);
WebElement e = driver.findElement(By.tagName("td"));
String actualValue = e.getCssValue("width");
System.out.println("width - of the webelement e is -> " + actualValue);
Thread.sleep(2000);
}
catch(Exception ex){
System.out.println("Exception " + ex.getMessage());
}
finally{
driver.close();
driver.quit();
}
}
}
What do you think on above selenium topic. Please provide your inputs and comments. You can write to me at reply2sagar@gmail.com
No comments:
Post a Comment