I am working with selenium and I have a drop-down list of buttons.
<button data-testid="option-110000" class="SearchDropdown-module_dropdown-option__1DUQ1">XI Button</button>
<button data-testid="option-120000" class="SearchDropdown-module_dropdown-option__1DUQ1">XII Button </button>
<button data-testid="option-130000" class="SearchDropdown-module_dropdown-option__1DUQ1">XIII Button </button>
I want to select one of them by the text displayed in the list. For example, I want to select the first button, looking for the element by the text that appears "XI Button".
How could I do it?