
dropdown code

dropdown value code seen only if hovering over it

dropdown value code seen only if hovering over it

interact {
moveToElement $('div.Select.is-focused.is-open.is-searchable.Select--single > div.Select-control > div.Select-multi-value-wrapper > div.Select-input > input[role="combobox"]')
click()
}interact{
moveToElement $('div.Select.is-focused.is-open.is-searchable.Select--single > div.Select-control > div.Select-multi-value-wrapper > div.Select-input > input[role="combobox"]') waitFor{ click($('.my-button')) }
}
interact {
moveToElement $('div.Select.is-focused.is-open.is-searchable.Select--single > div.Select-control > div.Select-multi-value-wrapper > div.Select-input > input[role="combobox"]')
waitFor(25, 0.5){ click( $('div.Select.is-focused.is-open.is-searchable.Select--single > div.Select-control > div.Select-multi-value-wrapper > div.Select-input > input[role="combobox"]') ) }
}





static content = {
dropdownPanel(wait: true) { parents('body').module(DropdownPanel) }
}
So I figured out chrome shows some different code than react's dev tool.
With this css string finally I can select the dropdown value:
$('div.Select.is-open.is-searchable.Select--single > div.Select-menu-outer > div.Select-menu > div[role="option"][id*="--option-1"]').click()