I'm trying to log in to a website using selenium and python. This is what the html for the username and password look like. The name and id are random strings everytime, so how would I use selenium to type in the form? The xpath and css selector I found using inspect element on chrome both contain the id, which doesn't really work since the id is random.
<input name="u41f98d000f26d904164eaf12622351bd" id="u41f98d000f26d904164eaf12622351bd" type="text" value="" autocomplete="off" tabindex="1">
<input name="pa0ef2cd4e22824cebe65dfed7f683c54" id="pa0ef2cd4e22824cebe65dfed7f683c54" type="password" value="" autocomplete="off" tabindex="2">
Sorry if this is a dumb question, I'm new to python and selenium