InterviewSolution
| 1. |
How to execute Cross platform testing and Cross browser testing in QTP? |
|
Answer» Cross platform testing and Cross browser testing can be possible by creating different actions in terms of different operating systems and Browsers. Cross Platform Testing: The built-in Environment Variable helps in excavating-up the OS information. You can call the action based on the platform where the action have been recorded. Cross Browser Testing: The code; Browser ("Core Values").GetROProperty ("version") helps in extracting the browser and its corresponding version, for example; IE 6, Mozilla Firefox 9 or Netscape 5. After extracting the browser, you can call the actions relevant to the particular browser. |
|