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.