When I inspect the element of a website (google alerts: https://www.google.com/alerts) I type in a name and press 'more options'. When I inspect the element of this page for one of the buttons such as 'How Often', I notice that in the HTML source code:
<div class="goog-inline-block goog-flat-menu-button-caption" id=":3" role="option" aria-setsize="3" aria-posinset="2">At most once a day</div>
If I manually edit the 'At most once a day' to the exact text of another option (through my inspector)(for example I type: 'At most once a week', it actually creates the change on the website. Therefore, I was curious if there is a way in python (maybe through selenium or beautiful soup) to actually edit the html code of a third-party website to create these types of changes? If not, I am struggling to find a way to change this drop-down button selection using selenium and would appreciate any insights.
Thanks!