VS2017 中 Coded UI 测试的数据源出现 TF30063 错误(适用于 VS2015)

TF30063 error with DataSource of Coded UI test in VS2017 (works in VS2015)

当我在 VS2015 Enterprise 中的编码 UI 测试中使用以下内容时,我能够连接。

[DataSource("Microsoft.VisualStudio.TestTools.DataSource.TestCase", 
       "https://<Company>.visualstudio.com/defaultCollection;TestProject", 
       "10216", DataAccessMethod.Sequential)
]

在 VS2017 Enterprise 中,我在 运行 我的测试中收到以下错误:

Data-Driven Unit Tests" (https://go.microsoft.com/fwlink/?LinkId=62412) in the MSDN Library.

Error details: TF30063: You are not authorized to access 
https://<company>.visualstudio.com/defaultCollection.

this link 我得到了一个解决方案,我应该更新我的 Visual Studio。但是有没有其他方法可以修复它?

我有最新的 VS 更新,但我仍然收到相同的错误消息。

注意:我可以访问 VSTS 中的测试用例和项目。

我通过刷新本地计算机上的数据捕获解决了此 link 中的问题。 为此,首先打开 VS 的开发人员命令提示符,然后输入以下命令

tf workspaces /collection:https://<account name>.visualstudio.com

然后它会要求提供凭据。 输入正确的凭据即可。

我认为问题在于它无法以某种方式将正确的用户(或任何用户)分配到我正在工作的工作区,因此它给我一条错误消息 "you are not authorized to access."