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...
Hi, ... The MainClassAdapter class you are using is not designed to handle a sequence of windows - it just expects a single main frame to be shown when you run...
Hi, First of all, thanks for your fast reply! ... shown when ... Nice. That's solved now, it was something due to the classpath order and some checks performed...
Well, it seems I'm getting closer. I did some modifications to the adapter, based on some suggestion I saw this morning while browsing the forum for hints on...
... If the first frame closes automatically, it's probably safer not to call dispose(). Do you think that what you are trying to achieve is really different...
Thanks for the response. I know all about struggling with maven. I started using it last year - it was a mental shift. However, now that I made it, I can't see...
Hi, ... from ... Not really different, but I'm having problems with getting a handle for the second window. I have this code: WindowInterceptor.init(new...
Me again... I don't know really how, but now I get to the window handler with pretty much the same code. Now the main problem is that the execution reaches the...
Hi, Where do you stand regarding this issue? Can you elaborate on the last sentence so I can try to help? ("But when... everything works fine...") Do you mean...
Hi Pascal, First, many thanks for your help again. I'll try to answer your questions. My program has two (slightly) different stratup paths. First, it starts...
Hi @all, thank you first of all for UISpec4J. I like it's simplicity. Anyway, I have some trouble with the FileChooserHandler. When I run the code snippet...
Hi, Sorry for not having been able to reply sooner! ... Indeed, it does! Thanks for those explanations. I just tried a similar scenario on my side, by...
Hi Manuel, Thanks for your positive feedback! The problem in your code lies in the first method call of the sequence: please use 'init' instead of 'run'. ...