-3
votes
1answer
216 views

How to read data from Excel by using loops? [closed]

I created an Excel file name "readdata.xls" and entered some inputs like UserName Password Akshit Ak12345 Ashwika AS12345 I've written a code like this .... package ...
-4
votes
1answer
144 views

ArrayOutOfBoundException when reading test data from Excel [closed]

I am very new to Selenium RC. Please, help in my question. I installed jxl.jar file (Java library for Excel) and added it to Eclipse build path. I created an Excel file as readdata.xls where I ...
4
votes
4answers
291 views

Looking for open source, Java-based tool for performance testing

Goal: I have an enterprise application written in java to test for performance. I need to do it separately, so I will be basically simulating a user interaction over http/https. My findings: ...
2
votes
1answer
55 views

Enforcement of quality as a runtime requirement

I come from a background that strongly emphasizes automated testing baked into the build process. You commit, the code is checked out by the build system, compiled, and tests run against it. If it ...
2
votes
3answers
165 views

Looking for a content-aware library for regression testing of PDF files

I'm doing some automated regression testing on a web application using Rational Functional Tester with Java. I need to test some PDF files produced by that application, comparing them with a "base" ...
4
votes
1answer
126 views

Can I (in Eclipse/java) automate the logging of all enters and leaves into or out of all functions, including library ones?

While comparing the run of my wizard and a similar standard one, I have to check all entrances into all functions for both cases. Is there some tool that can automate the process? I can't do it by ...
3
votes
4answers
2k views

Downloading a file in Internet Explorer through Selenium

I have to automate a case in which I have to download an Excel file using Selenium IDE.I have done this in Firefox by using custom profile feature which automatically downloads file and saves it into ...
5
votes
2answers
385 views

Testing Java or Silverlight plugins embedded in a page using Selenium?

We have a product that defaults to a Java plugin to upload files, and then Silverlight after that if Java's not installed. There is a third fallback of a HTML 4 + JavaScript uploader, but I'd like to ...
1
vote
1answer
530 views

Questions on Developing TestNG based automation for Java based web services

• In case of .NET 2.0 ASMX you can post HTTP requests for the web service using HttpWebRequest and HttpWebResponse • Is this approach possible for java based web service as well, referring to ...