Scripting can't call javascript function before submit form
|
07-02-2010, 07:24 PM
Post: #1
|
|||
|
|||
Scripting can't call javascript function before submit form
I want to test my application by script, I wrote a script to login as below:
// load the account name and password loadVariables accounts.txt // bring up the login screen setDOMElement name=user_id navigate http://w3x32s05-pv010.pd.local // log in sleep 5 setValue name=user_id %ADMINISTRATOR% setValue name=password %PASSWORD% setDOMElement innerText=My Institution sleep 5 submitForm name=login It runs well but just couldn't login successfully. After I debug code, I found the root reason is because the submitForm action won't run validate_form javascript funciton in my login page before submit(it will call the function if we submit it by manual). my form is like this: <form onsubmit="return validate_form( this, true );" method="POST" action="http://w3x32s05-pv010/webapps/login/" NAME="login" > the validate_form javascript will encode the password by a token value, it means the encode password will change each time, I can't set the encode password value too. Does it has any way I can write the script to login in my application? thanks. |
|||
07-02-2010, 09:42 PM
Post: #2
|
|||
|
|||
RE: Scripting can't call javascript function before submit form
Try sending a click (sendClick) to the form submit button instead of submitting the form itself.
|
|||
07-03-2010, 12:54 AM
Post: #3
|
|||
|
|||
RE: Scripting can't call javascript function before submit form
Thanks very much, I can run the script complete successfully now.
|
|||
03-19-2011, 05:24 AM
Post: #4
|
|||
|
|||
RE: Scripting can't call javascript function before submit form
hi,
I am testing login into live id and sign out. I am not able to login at all. After login page, I don't see it entering userid and pwd and submit. Please help fix my script. navigate https://login.live.com sleep 5 setValue name=login xxx1@hotmail.com setValue name=passwd test sleep 5 sendClick id=idSIButton9 |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)