I am trying to automate an AngularJS application using Selenium in python. I am trying to find an element with ng-modal. I have seen some post related to Java which specifies that you can use the following statement
"//input[@ng-model='yourName']"
I am trying to do the same in python
(By.XPATH, "//*/select[@ng-model='yourName']")
But I am unable to find the element. Am I missing something or is there is some other way of doing it?