Hi, Thanks for the prompt reply. The problem is quite large and difficult to specify, but another member of the team is having a look at it. I'm using 1.5....
Hi, I temporarily avoided the problem by commenting out my call to requestFocus, but I am facing this same error in a different context. This time it's when I...
Hi, ... This looks like a misalignment between the UISpec4J library and the version of JDK. What specific JDK version are you using (besides just 1.5), and...
Thank you so much for your help. It was a versioning issue. We are using a custom built version of UISpec4J (any changes we make will be sent back as a patch)....
Hello Pascal, I'm happy to use your wonderful library, but our project entirely relies on Maven central repo and I'd like to include the lastest version of the...
Hi Ivan, Thank you for your interest in UISpec4J and reminding us about this. There has been no date set for publishing the final UISpec4J 2.0 (it has to be...
Hi Mike, UIspec4J provides the API 'pressKey(Key)' for TestBox and ListBox components. If you want to press a key on other types of components, you should use ...
Hi Pascal, Is there anyway to get the component that currently has focus? To test normal user behaviour I want to send the key to that component, without...
Hi Michael, As you know, UISpec4J does not display the GUI (first because no human can verify the display at light speed, but also for performance reasons) As...
Hi, My application is in Java Swings and I would like to do automated testing for the same. I would like to know -- 1. Can UISpec4j be used for automated...
Hi !! First of all, thanks you for your test library which is very usefull. At this time, i'm testing a big MMI with your library. Everything goes well. ...
Hi, Thanks a lot for your warm support! In the case of a MDI application, the method 'getMainWindow' gives access to the main frame. From there, use...
Hi, thank you for your help. I try the method you gave but it doesn't work. I've the message : "No component of type Destock found" It's normal because the...
Hi, ... If it's not an MDI application, you can use the following AWT method: Frame[] Frame.getFrames() which will return all the top-level frames owned by...
I have been having some issues with the FileChooserHandler. Below is the error trace and some code that replicates the issue. I have seen it both on Windows...
Hi Jayashree, UISpec4J is aimed at interacting and checking contents of actual UI components. The OrderEntry class being an Event Listener, I presume it is...
Hello, It looks like there is indeed a weird behavior here. On the other hand, the following test should pass: public void testCancelSelection() throws...
My last response must have either gotten lost or I messed up with the post, so I will post again. Your test does indeed work, however, the code I need to test...
Hi, I'm new to the UISpec4J framework, and I've been enjoying it so far, but I've run into a problem I can't figure out... I have a table in which each cell...
Hi Bassam, ... There's nothing wrong in your code as far as I can see. In your production code, what is the event that actually applies the change to your data...
Hi, Indeed, the FileChooserHandler.titleEquals() currently behaves correctly only if the title has been customized (cal to JFileChooser.setDialogTitle()). ...
Hi, I'm having a very strange problem with a FileChooser dialog. With the following code: WindowInterceptor.init(menuBar.getMenu( "Script").getSubMenu("Run...
Hi, I tried out your suggestion. Your suggestion works, if my class extends any component, however, it does not work with the OrderEntry. I tried out - ...