So I'm writing a script using Selenium but I got stuck at finding a div class.
The structure on the website is like this:
<div class="field first_name">
<input type="text" placeholder="First Name"></input>
</div>`
Already tried something like driver.find_element_by_xpath("//field[@first_name]")
But it didn't work for some reason, maybe I did it wrong or have to it in a different way.
Anyone got a clue?