Hi, first of all I would like to thank anybody willing to help me with my problem.
I need to fill a web form and there are a lot of records to add. Therefore I would like to automate the work.
I read the data from CSV file, and then need to populate the web form with retrieved data in loop.
The thing is that some fields are combo-boxes containing checkboxes. One such field is Country.
If I just populate country name to the appropriate textbox and then try to submit the form, I get an error that no country was selected. I actually have to check the corresponding checkbox.
This is how my flow looks like right now.

- It populates the country name to the text field. However, this step does not actually change anything. It does not check the checkbox of the country. Neither it scrolls the combo-box to the appropriate country. Thus, it is probably unnecessary.
- It clicks on the arrow to actually show the list of countries.
- It always checks the item that is on the top of the list.
This is what the selector chkPartiallyWorking looks like:
div[Id="ctl00_Body_GridView1_ctl00_ctl02_ctl03_Ins_RadCountry_rcbDBCBox_DropDown"] ul[Class="rcbList"] label > input[Class="rcbCheckBox"]
And this is screenshot from the browser.

Is it possible to check the correct checkbox with Power Automate Desktop? And how should selector look like? Or any alternative ideas how I can achieve what I need?