The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
21 views

Complex Jwebunit testing

Ok I will explain scenario clearly, one html file includes another, i.e., first html page calls another html. When this happens and executed to display on browser, the view source of this page ...
0
votes
0answers
11 views

jwebunit test for a file which is included using javascript or widget

The table is the one from which I want to retrieve data from. Since it is getting populated by the following script, I am not able to access the table. The table is written in different xhtml page ...
1
vote
1answer
67 views

Testing button state using JWebUnit

Is it possible to test if a button is enabled or disabled(even if it is enabled/disabled using java script after few form actions) in the page using JWebUnit.
0
votes
0answers
47 views

jwebunit selectOptionByValue slow

I'm writing a web test to automate an irritating test data creation procedure. It involves filling around 250 fields on one particular page, and I'm using the built-in WebTester method to set these ...
1
vote
1answer
222 views

htmlunit vs. jwebunit with htmlunit plugin

I did some research on ui testing tools such as htmlunit, httpunit, jwebunit, selenium etc. I'm not very familiar to testing tools. Htmlunit sounds a good option in terms of javascript support. ...
0
votes
0answers
110 views

Dynamic JavaScript Alerts with JWebUnit

I'm using JWebUnit and the system I am testing uses a JavaScript alert that has a dynamic message e.g. "Your application has been submitted with reference ". Using JWebUnit I am calling ...
0
votes
1answer
68 views

How to read values from input tag when using jwebunit

I need to read the values from a series of input tags of a html page. Can anyone help me in this regard? Thanks in advance..
0
votes
1answer
81 views

testing a download file link using JWebUnit

I am using JWebUnit. How can i use it to test if a download link works properly and the file is actually downloaded.
1
vote
2answers
332 views

Getting SSLhandshake exception even after the security certificate is installed

" java.lang.RuntimeException: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: ...
0
votes
1answer
168 views

jwebunit to check css style

I'm trying to assert the current styling of a div. For example, is it set to visible or not. I wasn't able to find a way in jwebunit to get at this information though. Ideas? Alternate approaches? ...
0
votes
1answer
190 views

Using JWebUnit behind a proxy

I'm using JWebUnit to run tests on my application running locally (localhost) but some parts of my application require the user to be redirected to an external site, do some stuff then come back ...
0
votes
1answer
135 views

Using JWebUnit for TDD approach for Spring webflow application

My project involves Spring Webflow. I would like to use TDD approach for developing web pages. (ie) JSP etc.. If there is change in jsp I want to test I dont want to restart the whole server I have ...
1
vote
2answers
533 views

How do I get the value inside a <td> tag with xpath/htmlwebunit

I am trying to create a Java Application that retrieves information from a webpage. This is part of the code I am trying to access the value in the 1st td tag in the 2nd tr tag: <TABLE ...
0
votes
2answers
245 views

Getting Syntax error when running jwebunit test program

Here's my code package net.sourceforge.jwebunit.sample; import net.sourceforge.jwebunit.WebTestCase; public class JWebUnitSearchExample extends WebTestCase { public ...
0
votes
1answer
123 views

getting-java-io-ioexception-when-running-junit-test-case-in-eclipse (continued)

I've just found a proxy somewhere and applied to my code, seem to be successful. But when it comes down to submit("btnG"), I got an syntax error SyntaxError: syntax error (httpunit; line 155) at ...
1
vote
2answers
234 views

Getting java.io.IOException when running JUnit test case in Eclipse

Here's my code public class JWebUnitTest extends WebTestCase { public JWebUnitTest(String name) { super(name); } public void setUp() { ...
1
vote
1answer
159 views

jwebunit playframework functional test is stuck

I use play-framework application, and going to use JWEBUNIT for functional testings. There is a article that proved me to use that way: ...
21
votes
14answers
11k views

Disable HttpClient logging

I am using commons-httpclient 3.1 in an integration test suite. The default logging for HttpClient is extremely noisy and I can't seem to turn it off. I've tried following the instructions here but ...