I have a dropdown and lets say the dropdown's code looks something like this:
select name="Rv$ct104$ct1111Value" onchange="javascript:setTimeout('___do PostBack(\'Rv$ct104$ct1111Value')',0)" id="RV_ct104_ct111_ddValue" class="aspNetDisabled" style="font-family": Verdana; font-size:8pt; width:281px;"
<option selected="selected" value="1">(ALL)</option>
<option value="2"Bob LastName1</option>
<option value="3"George LastName2</option>
<option value="4"Alice LastName3</option>
<option value="5"Michael LastName4</option>
<option value="6"Mary LastName5</option>
How will I select 'Alice' for my web-scraper with selenium and python if the option value for Alice is constantly changing? New names are constantly being added to the dropdown therefore the option value is constantly changing, but I need my web scraper to select same name always.