InterviewSolution
| 1. |
What Are Test Initialize And Test Cleanup Coded Ui? |
|
Answer» Test Initialize ATTRIBUTE is same as TestMethod which EXECUTES before a TestMethod by DEFAULT. BROWSER launch, login functionality will be scripted in Test Initialize. Test Clean Up attribute is same as TestMethod which executes after a TestMethod by default. Closing the browser, CLEARING cache, clearing cookies and log out functionality will be scripted in Test Clean Up. Test Initialize attribute is same as TestMethod which executes before a TestMethod by default. Browser launch, login functionality will be scripted in Test Initialize. Test Clean Up attribute is same as TestMethod which executes after a TestMethod by default. Closing the browser, clearing cache, clearing cookies and log out functionality will be scripted in Test Clean Up. |
|