2

我遇到了数据绑定 Web 性能测试的问题。我有两个网络测试,每个测试都绑定到不同的 CSV 文件。最初创建的第一个运行良好。但是第二个网络测试抛出了以下内容。

错误

Could not run Web test 'WebTest1' on agent {{SERVER}}: Could not access table 'Data#csv' in data source '{{Datasource}}' of test '6181b289-71fa-478f-8341-eba270b46c2a': No value given for one or more required parameters.

我在本地运行它们。没有设置控制器或代理,我正在使用VS 2010 SP1.

4

2 回答 2

1

在 Web 测试中加载的 Visual Studio 中打开 CSV 文件,并将标头和值的分隔符从 更改为;,例如:

前:

username;password;shopID;periodID
user1;password11;1;10
user2;password22;2;10

后:

username,password,shopID,periodID
user1,password11,1,10
user2,password22,2,10
于 2015-02-24T11:41:08.143 回答
1

从 SQL Server 查询的结果创建我的 .CVS 文件后,我收到了上述错误。用记事本检查 .CVS 后,我发现它被格式化为 UTF-8。从记事本只需将编码设置为 ANSI 而不是 UTF-8 或 Unicode,这将解决问题。

于 2016-09-23T15:13:52.513 回答