class Selenium::WebDriver::Support::Color

def ==(other)

def ==(other)
  return true if equal?(other)
  return false unless other.is_a?(self.class)
  [red, green, blue, alpha] == [other.red, other.green, other.blue, other.alpha]
end