Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im getting a PInvokeStackImbalance error when running debug in VS2010 using selenium webdriver 2.5.1 dlls.

If i do exactly the same but switch the dlls to the old 2.4 version there's no problems

Am i missing something??

Error message: PInvokeStackImbalance was detected Message: A call to PInvoke function 'WebDriver!OpenQA.Selenium.IE.InternetExplorerDriverServer+StartServerFunction::Invoke' has unbalanced the stack. This is likely because the managed PInvoke signature does not match the unmanaged target signature. Check that the calling convention and parameters of the PInvoke signature match the target unmanaged signature.

Calling code:

_driver = new InternetExplorerDriver();

Thx for the help.

share|improve this question

1 Answer

up vote 2 down vote accepted

This is a known issue. It's already been fixed in the trunk of the project. If you are able to build from source, you can pick up the fix now. If you are unable to do so, the fix should be available in the next binary release.

share|improve this answer
Thanks for the response, glad to hear it wasn't me who couldn't figure out vs2010 ;) – Martin Mussmann Aug 30 '11 at 17:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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