Microsoft UI Automation Library Vs Coded UI Test

前端 未结 4 1683
难免孤独
难免孤独 2021-02-05 20:57

I\'m very much new to Test Automation kind of thing. Recently I\'ve been assigned to a project where I have to write an application (or, a script may be, I\'m not s

4条回答
  •  鱼传尺愫
    2021-02-05 21:18

    If you can leverage and use the Coded UI Test then go that route. Make sure to verify that your given configuration is supported.

    The UI Automation Library resolves everything in the code behind. This then forces you to use a tool like UISpy to gain access to the controls internals so that you can then build out your test.

    A Coded UI Test on the other hand still has code behind however it allows for the recording of steps through the given application which you are testing which will greatly increase the number of tests you can create.

提交回复
热议问题