InterviewSolution
| 1. |
What Is Attribute Coded Ui? And Give Some List Of Attributes? |
|
Answer» [TestMethod] is an attribute before method in class and indicates the method should be executed to PERFORM a test. [DataSource(…)] is an attribute which is used for Data DRIVEN Testing. Like wise there are many ATTRIBUTES available in Coded UI: [TestMethod] [TestCleanup] [TestInitialize] [AssemblyCleanup] [TestMethod] is an attribute before method in class and indicates the method should be executed to perform a test. [DataSource(…)] is an attribute which is used for Data Driven Testing. Like wise there are many attributes available in Coded UI: [TestMethod] [TestCleanup] [TestInitialize] [TestClass] [AssemblyCleanup] |
|