Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Coded UI is part of the testing (quality assurance) aspect of Microsoft's software development life-cycle strategy. Coded UI tests are typically created and used by quality assurance folks to verify that code meets the business' requirements. Sometimes they share these tests with developers so developers can better repeat and understand the bugs the tests locate.</p> <p>Coded UI tests themselves are basically a way of creating an automated test that tests user interface functionality. So for example, you could record navigating to a certain page in the company's application, login and then go to some page where a bug can be be made to happen. Then you could play back that actual 'recording' as many times as you want to see if the bug was fixed. There some other tools that automate stuff like this such as watir. Watir is not a test though to be clear. Just a way of automating browser strokes (and recording them).</p> <p>Lastly, your team lead says code rather than record. When recording a UI test you actually do it as described above. You click record, go through the steps and then when done click stop. You can also create an automated UI test (also known as Coded UI test) using just code. You can ALSO record a coded UI test I believe and then edit it in code mode.</p> <p>FORGOT to mention: You can add assertions as a part of your test (much like other forms of code testing). This means you could say that the profile should not allow a box to contain a certain value under certain conditions and the test should fail if this is allowed when the test is run.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload