Can I extract JavaScript code using Python Selenium, In other words, i need the js code as string
function validateForm() {
var x = document.forms["myForm"]["Password"].value;
if (x.length >= 6) {
}
}
Can I extract JavaScript code using Python Selenium, In other words, i need the js code as string
function validateForm() {
var x = document.forms["myForm"]["Password"].value;
if (x.length >= 6) {
}
}