For questions about value_of_css_property() - the method provided by the web browser automation tool called "Selenium" that returns the value of a CSS property of a WebElement. When using this tag also include the more generic [selenium] tag where possible.
value_of_css_property
value_of_css_property()
method returns the value of a CSS property of a WebElement.
Definition
This method is defined as:
def value_of_css_property(self, property_name):
"""The value of a CSS property."""
return self._execute(Command.GET_ELEMENT_VALUE_OF_CSS_PROPERTY, {
'propertyName': property_name})['value']