I need help with a webpage that contains a configurable field. The values of this field can be set through a configuration panel, and it can be marked as required by checking a checkbox which applies a specific style to the field label. My question is, how can I use Selenium to verify if this style has been applied to the control label?
.form-group.required div.title label:after, .form-group.required label.title:after {
content: '*';
margin-left: 5px;
color: #FF7900;
}