How do I get a handle to this combobox with selenium?

<select class="form-select select2-hidden-accessible" id="dropdownOptions" name="domain" required="" data-select2-id="select2-data-dropdownOptions" tabindex="-1" aria-hidden="true">
                        <option disabled="" selected="" value="" data-select2-id="select2-data-2-vow8">-- Select a domain --</option>
                                                <option value="find-a-tradie.au">find-a-tradie.au</option>
                                                <option value="find-a-tradie.com.au">find-a-tradie.com.au</option>
                                                <option value="gregsnativelandscapes.com.au">gregsnativelandscapes.com.au</option>
                                                <option value="katescastle.com.au">katescastle.com.au</option>
                                            </select>

Get by ID doesn’t work.
Get by XPath doesn’t work (relative or full).
Get by XPath with id doesn’t work.

It is as if this combobox does not exist as far as selenium goes.

Can Beautiful soup find it?