@Test
 public void setValueTest() {
   colors().setValue("Blue");
   CommonActionsData.checkAction("Colors: value changed to Blue");
 }
 @Test
 public void getSelectedIndexTest() {
   CommonActionsData.checkActionThrowError(
       () -> colors().getSelectedIndex(),
       CommonActionsData.noElementsMessage); // isDisplayed not defined
 }
 @Test
 public void selectEnumTest() {
   colors().select(Blue);
   CommonActionsData.checkAction("Colors: value changed to Blue");
 }