InterviewSolution
| 1. |
Is It Possible To Run The Same Ranorex Test Code On Vista And Xp? |
|
Answer» Yes. All IDENTIFICATION information is stored within a RanoreXPath expression and is therefore SEPARATED from the test automation code. The following RanoreXPath expression finds a BUTTON both on Windows XP and on Windows Vista: /form[@title='WordPad']/.//button[@text='&No' or @text='Do&n''t Save'] The RanoreXPath SEARCHES for a button, whether it contains the text '&No' or 'Do&n''t Save'. Yes. All identification information is stored within a RanoreXPath expression and is therefore separated from the test automation code. The following RanoreXPath expression finds a button both on Windows XP and on Windows Vista: /form[@title='WordPad']/.//button[@text='&No' or @text='Do&n''t Save'] The RanoreXPath searches for a button, whether it contains the text '&No' or 'Do&n''t Save'. |
|