or
$("#firstSelectObject").change(function () {
$("#secondSelectObject").empty();
var parms = { ... };
var serverUrl = ...;
$.ajax({ url: serverUrl, traditional: true, type: "POST", dataType: "json", data: parms,
success: function (result) {
$.each(result, function(val, text) {
addToSelectList(text);
});
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert( ... );
}
});
}
});
Once the test modules are in place,I add them to high-level tests with the Test as Step function. Next I open the AddToCart test and add the test to the beginning of it.There was so many Test as Step function there and their name was so resemble.
How can I know the path of My web test.