Executing coded UI test from a standalone application

后端 未结 7 1814
庸人自扰
庸人自扰 2020-12-01 22:33

I found several blog posts about how to execute code UI tests using mstest utility, but I need to execute them from my C# application. I tried the simplest thing: I created

7条回答
  •  忘掉有多难
    2020-12-01 23:04

    I had a similar problem when running with MSTest in C#. I'm using Selenium, so I marked my base class with the [TestClass] attribute. I need CodedUI to test file uploading. When I changed it to [CodedUITest] it worked.

提交回复
热议问题