Hi, Â I am able to open JFilehooser and able to catch it using UISPEC4J API's. ... I am unable to catch ... text field in JFileChooser. Â Description: ...
Hi All, Â Â I have to test array of buttons using uispec4j. Can anyone help me ! Â Description: Â I have a array buttons.but i dont have a any label to...
Hello, ... But I face a problem when I need to select a file using JFileChooser. I am unable to catch components inside JFileChooser. Usually you don't have to...
Hello, ... I'm not sure whether your problem is dealing with an array of buttons or finding buttons with their tooltips. Since I only understand the second, ...
Hi, I was wondering if you could answer a quick question for me. I am probably missing something simple. here is a snipped of my code............... public...
Hi Robert, ... That's quite strange. Could you please check if this simple test works with your configuration? Window mainWindow = WindowInterceptor.run(new...
Thanks for the quick reply. here is the information you requested. OS: Windows XP JDK: 1.6.0 UISpec4J: 2.0-RC1 I tried your test and it worked just fine. I...
I did this and got my window just fine. Window intWindow = mainWindow.getDesktop().getWindow("Interface Configuration"); this solves my problem, I now have a...
... No problem. I understand that it's not always easy to explore a new API, and there are probably a few shortcomings in UISpec4J itself in this area. Feel...
hey again, another question if you don't mind. Is there a way to get a text box without having to type in the text currently contained in the box? One of the...
Hi, ... Usually, when retrieving TextBoxes, I either: - use the "inner name" (as given with JComponent.setName(String) in the production code) - if possible,...
Thanks. I understand now, worked like a charm :) ... the production code) ... TextBox, and then use ... but over time we have ... more stable than the...
Hello! We are happy to announce the release of UISpec4J 2.0-RC2, with a brand new website: http://www.uispec4j.org This Release Candidate is a preview of...
Hi all, I would like to know if it is possible to get a windows without having a program with Main class. Indeed, I'm using Netbeans RCP framework, and modules...
Hi, ... The standard way for retrieving a nonmodal window is the following; Window window = WindowInterceptor.run(new Trigger() { public void run() { ...
Hi Regis, thanks for the response. Unfortunately it did not help. Indeed, i tried this code exactly: Window window = WindowInterceptor.run(new Trigger() { ...
Hi All, I am using UISpec4j to test my tool bar i need to right click on the JToolbar. Please any body can help on this issue........ Adavnce Thanks...
Hello All I am new to UISpec4J and facing the problem that my main Swing Application frame is not being popped up(frame.setVisible(true);). While searching the...
Hi, Unfortunately, there aren't yet any API in the Panel class for reaching the Toolbar (although this may be a possible improvement in the future) To help...
Hi, ... Just to make sure I correctly understand the problem, what are you observing? - you run the test and no frame is displayed on the screen? - you run the...
The frame does not get displayed. The NetBeans framework shows that the App is running but nothing visible. I just posted a call stack on the same message...
... This is a normal behaviour for this library. When using UISpec4J, we replace Swing's display mechanisms with an internal one that causes the windows to...
Oops!! Actually, I thought that the GUI testing of Swing App would involve the app being run as usual and thru the test code, various GUI controls would be set...
Hi All, I am creating Toolbar which extends AbstractUIComponent and even i have followed these steps to create a custom component the code looks like Step1: ...
Hi lads_vasu, We appreciate very much your feedback on the extension mechanism. We will look into this issue, and get back soon with a response. Am I right in...
Hi Pascal,  Thanks a lot for Very qucik reply. We solve this issue using Extension Generator. Really its good mechanism.  We are able to find the...
Hi, 1.5 is the latest version of uispec4j that I can find a Maven artifact for. (http://mvnrepository.com/artifact/uispec4j/uispec4j/) I'm new to this project,...
Hi Brian, Welcome to the UISpec4J community. You're right, we haven't published yet any Maven archive for UISpec4J 2.0. So far, nobody has reported any issue...
Hi all, I'm looking for a GUI test library to test our application, and was giving a try to UISpec4J. I tested with a really simple sample app with one button...