Do you know of any web tools in Chrome or Firefox that autocomplete forms with random text for tests? I have a 35 field form and every time I submit for testing, I have to complete it again.
Do you know of any web tools in Chrome or Firefox that autocomplete forms with random text for tests? I have a 35 field form and every time I submit for testing, I have to complete it again.
Using jQuery to do a little function to fill all inputs when the page is ready:
<script>
$(document).ready( function() {
$("input").each(function(){ // percorre todos elementos "input" do documento
$(this).val("textoQualquerSoParaTestes"); // atribui o valor genérico para os campos
});
});
</script>
Unless you have to use values
specific, this should work.