I am using WHITE and IronPython 2.7 in VS2010 to write some UI automation scripts. I have a simple application which gets launched by:- (no error there)
application = Application.Launch("path_to_app\\some_window_name.exe")
and when I try:
window = application.GetWindow("some_window_name")
I get an error that 'Bricks.dll' cannot be loaded. then I try to add reference to it explicitly, VS2010 throws an error that the 'Bricks.dll' cannot be found in the given reference path, even though it is there in the path that I have given.
Any help would be greatly appreciated. Nunit fails to start my application seems to refer to the same error (even though it refers to NUNIT framework) I tried the solution given there but that didnt solve my problem.