0

I've created CI&CD on Azure repo, and it is doing code deployment on App service.

Now created Automation that opens the browsers and do actions and generates reports for test cases. (C#+Selenium+report package).

Now I need to the setup Test plan, I know, needs to run headless testing, my the questions are

  1. need to do without buying a Test plan package, then how we should do? (I have a subscription but not with test plans)
  2. How to do using Azure Test plans (any recent blog pls, and no MS docs links).

any help appreciated

mkareshky
  • 202
  • 3
  • 7
Praveen
  • 25
  • 1
  • 8

1 Answers1

0

As far as I know, you can execute Selenium tests directly in the pipeline(Without test plan).

Here are the steps:

  1. Add Visual Studio Test Task to run the Selenium tests and the test result will be output to the Test tab(Build Pipeline or Release Pipeline).
  2. You also could use Publish Test Results task to publish test result.

enter image description here

Here is a blog about the detailed steps: Automating Selenium Tests in Azure Pipelines.

For headless testing,

You could refer to UI testing considerations.

By the way, since you have already created CI/CD, you can also consider integrating UI testing steps into CI/CD.

If you still want to configure test plan, you could refer to this doc.

Kevin Lu-MSFT
  • 20,786
  • 3
  • 19
  • 28
  • @Praveen. Feel free to let me konw if the answer could give you some help. – Kevin Lu-MSFT Aug 20 '20 at 01:12
  • @Praveen. Glad to know that the answer is helpful. you may consider [Accept it as an Answer](https://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work). This can be beneficial to other community members reading this thread and we could close this thread, thanks – Kevin Lu-MSFT Aug 28 '20 at 00:46