1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
load html("<!DOCTYPE html> <html> <body> <h2>HTML Forms</h2> <form action=\"\"> First name:<br> <input type=\"text\" name=\"firstname\" value=\"\"> <br> Last name:<br> <input type=\"text\" name=\"lastname\" value=\"\"> <br><br> <input type=\"submit\" value=\"Submit\"> </form> <p>If you click the \"Submit\" button, the form-data will be sent to a page called \"/action_page.php\".</p> </body> </html>") set(#Debug,"Apichai P.","Global") clear list(%Debug) add list to list(%Debug,$plugin function("Advanced Data Text File.dll", "$string to chars", #Debug),"Don\'t Delete","Global") set list position(%Debug,0) loop($list total(%Debug)) { set(#Item,$next list item(%Debug),"Global") type text(<first name field>,#Item,"Standard") wait($plugin function("Advanced Data Text File.dll", "$random", 0.1, 0.5, "Decimal", "0.#")) } |