I am trying to perform drag and drop in Webdriver,and I am facing this problem: Cannot perform native interaction: Could not load native events component.; duration or timeout: 203 milliseconds Build info: version: '2.14.0', revision: '14955', time: '2011-11-29 11:43:45' System info: os.name: 'Windows XP', os.arch: 'x86', os.version: '5.1', java.version: '1.6.0_30' Driver info: driver.version: RemoteWebDriver How to resolve it?

link|improve this question

0% accept rate
feedback

1 Answer

This problem can be avoided by using the following code while initializing the FireFox Driver

        ` FirefoxProfile profile = new FirefoxProfile();

          profile.setEnableNativeEvents(false);

          driver = new FirefoxDriver(profile);`

If the Driver is initialized like this then the Actions work properly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.