| View previous topic :: View next topic |
| Author |
Message |
dave0989
Joined: 12 Jul 2007 Posts: 3
|
Posted: Mon Jul 16, 2007 5:29 pm Post subject: Null Pointer Exception |
|
I have been working through the examples you have listed for .net testing. The real only change I have made is the name of the control and the caption text.
Control seekButton = form.FindChildText("Seek Device");
Mouse.ClickControl(seekButton);
I get a Null Pointer Exception when I run the application. and it points to the first line in the code above. I ran the example almost the same way with the exception of a few name changes. What object am I supposed to instantiate in this example? |
|
| Back to top |
|
 |
admin Site Admin
Joined: 05 Jul 2006 Posts: 351
|
Posted: Mon Jul 16, 2007 8:05 pm Post subject: |
|
|
Code: click into code to enlarge
I get a Null Pointer Exception when I run the application. and it points to the first line in the code above.
This can happen if the form object reference is null (e.g. Application.FormFindTitle cannot find a form with the specified title and returns null):
Form form = Application.FindFormTitle("RanorexTestedApp");
Please check your form object, which sample do you mean?
Jenö
Ranorex Team |
|
| Back to top |
|
 |
|