Hi, Edward: I started a jsunit server on remote machine. On my local jsunit I changed "remoteMachineURLs" value=http://remoteMachineIP:8080 in build.xml and...
Hi, First of all, jsunit rocks. Having the ability to run my javascript tests when I run my junit tests via ant makes javascript much more usable in an agile...
I haven't heard of this problem before. After the second browser runs the tests, you say it hangs. Is it hanging before or after it submits the results?...
The XML results page is what remains and the junit test just stops at that point - it never finishes. _____ From: Edward Hieatt [mailto:edward@...] ...
OK. I'm aware of a problem where Mozilla browsers don't always get closed after they submit results on certain OSs. I've not heard of the JUnit test then not...
Good news/bad news. It worked just fine. I cd'd to the jsunit directory, modified build.xml to include both browsers, ran "ant standalone_test" and both...
Edward - I found the problem. It works fine unless I use the "resultId" query parameter in the url string: This is fine: <property name="jsunit.url.ie" ...
Ah - you're quite right, there was a bug. I added a resultId parameter to StandaloneTestTest, and the test failed in the same way you noticed. I've checked...
Thanks for addressing that Edward. Personally (really - just speaking for me), I let junit overwrite the log files with any run anyhow. So issue 1 doesn't...
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...