Reputation: 1644
I am using watir-webdriver and am attempting to check the background-color of an HTML element. The problem is that the background-color is set in the CSS and not inside the HTML tag.
Is there a way to read the CSS value using watir-webdriver?
Upvotes: 6
Views: 2265
Reputation: 3685
Yes, use the style method
Example:
require 'watir-webdriver'
b = Watir::Browser.start 'minesweeper.github.com'
puts b.div(:id => 'g1minesRemaining100s').style 'background-image'
Upvotes: 7