Answers for "how to mention a div with class in xpath"

0

how to mention a div with class in xpath

button[@type='submit']
button[@class='btn btn-success']
button[@type='submit'][@class='btn btn-success']
Posted by: Guest on May-23-2020
0

how to mention a div with class in xpath

button[type='submit']
button[class='btn btn-success']
button[type='submit'][class='btn btn-success']
Posted by: Guest on May-23-2020

Code answers related to "how to mention a div with class in xpath"

Python Answers by Framework

Browse Popular Code Answers by Language