gui-testing

Test Automation for Internet Explorer

Is there any tools for GUI Test Automation for Internet Explorer? I already use Selenium for Mozilla Firefox, but I also need a tool for IE. ...

What testing tool can I use to test drag'n'drop?

I need to test file upload feature in my web application. User can choose a file in windows explorer, drag it to a container in a browser, and file gets uploaded. I guess i need a simple UI testing tool which allows drag-and-drop between 2 arbitrary windows. What testing tool is the best for that? ...

WindowTester "enterText" enters repeated characters

I have a WindowTester test which creates a C++ project in Eclipse: ui.click(new LabeledTextLocator("&Project name:")); ui.enterText(projectName); ui.keyClick(WT.CR); This works fine on Windows, but on Linux it tends to repeat the first character in the project name, so if the project name is "testproj", the text entered in...