Correct me if I'm wrong, but I think you're asking whether you can programmatically (that is, inside JS tests) add to the XML file that is created when you...
Hi Edward, that would be exactly what I need. I want to capture all trace messages for the standalone test suite. What file it will go to is not important. ...
Edward, I sent this to you as an email, but I will post it here as well. Has anyone written a PHP wrapper for your test framework? We are looking for a...
Hi - I'm not sure I completely understand your question. PHP is a serverside scripting language, and JSUnit is for testing clientside JavaScript. Are you...
I can understand your confusion, but what I am looking for is fairly straight forward. We develop applications written in PHP tightly coupled with Javascript....
I answered my own question: 1. Run the page which generates the popup. 2. Replace the address line of the popup with the address of the test runner. 3....
JsUnit is for unit testing client-side JS. It doesn't support interaction with a server, because by nature that would mean a functional test of server ...
HttpUnit is another likely candidate for testing against a server. However, by necessity, it is more a tool for functional testing than unit testing....
Hi, My application is sort of GUI editor. I wanted to unit test this with jsunit. I found it difficult to simulate events as I am actually dealing with...
see ruby runit. This is a testing framework which plugs into IE and can simulate all user actions. Bert ... From: r_slide [mailto:r_slide@...] Sent: Fri...
Hey, We are using JsUnit. And we've encountered the following error on some machines when running tests against IE 6.0, "Can't execute code from a freed...
John Horgan
JHorgan@...
Jan 13, 2005 3:53 pm
355
I've seen this when creating a javascript object on a page, passing it to another page, and getting rid of the first page. Specifically, I have had modal...
We experienced 3-4 hours of downtime this morning as we switched ISPs. Sorry for the inconvenience. I believe things should be working OK now. - Edward...
Hi, How to test the java script functions in the jsp,html pages. For example, suppose we have to text boxes to enter the numeric values and on clicking a...
There's two ways you can do this. One is to actually write a form on the page named form1 and test its value after calling the function. I don't like this...
Hi, Thank you very much. how to get familiar with javascript objects? can u provide some sites or online docs. ... on the ... don't like ... I prefer ... If...
One way to get familiar with objects is to take a look at the JsUnit code itself - we try to make it as OO as possible. In terms of mock objects, you might...
Try to start a JsUnit server, i've got following error, any idea? Thanks, ========================================== C:\jsunit>ant start_server Buildfile:...
I guess you are using the old version jdk. Please check your java version and make sure you are using at least jdk 1.4 to run it. rhuo221 <rhuo1@...>...
Here is my JDK/JRE/VM version: Total time: 1 second C:\jsunit>java -version java version "1.4.2_07" Java(TM) 2 Runtime Environment, Standard Edition (build...
What are people using to view the JSUnit server logs? What kind of questions are people asking of the logs? We think what we want to know is what test suits...
When I post a form to another page (asp), I want to run some javascript and I want to use jsunit to help with the debugging. In the htmlrunner page, you enter...
I'm having trouble getting jsunit to run on our (strange, proprietary, closed source) browser. It loads a test suite fine, say from "tests/testsuite.html", yet...
Hello, I don't know whether this kind of question came up in the past. Anyway, I new to JsUnit and I have some basic questions. Let me take an example of web...
JsUnit is for unit testing in-browser javascript, not for testing "walking through" web applications. Most likely you are looking for something like...