I have a requirement to import the Excel Based Test Cases into VSTS and Export Test Cases from VSTS into MS Excel. VSTS(Not TFS)
相关问题
- Authentication Failure using Git-LFS Azure DevOps
- Excel sunburst chart: Some labels missing
- Visual Studio 2010 randomly says the command line
- (ASP.NET) Project file must include 'WindowsBa
- Partial Form Class C# - Only display code view for
相关文章
- How to show location of errors, references to memb
- Log4Net Multiple Projects
- Compiling error in C++ project with C and C++ code
- How to use Mercurial from Visual Studio 2010?
- Get column data by Column name and sheet name
- VSIX: execute code on VS startup
- Copy different file to output directory for releas
- programmatically excel cells to be auto fit width
You can use below way to export test cases from VSTS to MS excel:
Define a query for the test case you want to export. Create new query for all test case -> specify
Work Item Type
=Test case
.Connect in MS excel. MS excel -> Team ribbon -> New List -> Servers -> add -> input VSTS URL(
https://account.visualstudio.com
) -> OK -> Close -> select a team project -> connect -> choose Query list -> select the query you just created -> OK.Now all the test cases are export to MS excel. And you can click Choose Colums to add or remove displayed columns.
Import to VSTS: You can add new WIT in MS excel, and then click Publish to import new created WIT to VSTS.