6 messages in com.canoo.lists.webtest[Webtest] Re: form submiting....
FromSent OnAttachments
Ales Muchin08 Feb 2005 02:45 
Marc Guillemot08 Feb 2005 03:02 
Ales Muchin08 Feb 2005 03:15 
Ales Muchin08 Feb 2005 03:24 
Marc Guillemot08 Feb 2005 03:31 
Ales Muchin08 Feb 2005 03:44 
Subject:[Webtest] Re: form submiting....
From:Ales Muchin (ales@op.pl)
Date:02/08/2005 03:15:52 AM
List:com.canoo.lists.webtest

So, this is the form : <form name="props" action="Node" method="post"> <input type="hidden" name="new_name"> <input type="hidden" name="todo"> <input type="hidden" name="nodeId" value="123123"> </form>

and this is JS which i use : function changeName(new_name) { ..... some code in JS wich execute only IE (showModalDialog):-/ and i dont want to change this js, ..... document.forms.props.new_name.value = new_name; document.forms.props.todo.value = "rename"; document.forms.props.submit(); }

Can i submit this form with webtest?

Regards Ales'

javascript works in webtest ... each day better.

What js problem do you have trying to do the submission in webtest using javascript?

Marc.

Ales Muchin wrote:

Hello!

Is it possible to submit a form which did not have a button by webtest?

in application i submit it by invoking JavaScript function from other window.