作为分配,我必须检查<script>
var background = [];
var colors = [];
// is there any way to put background and color in one array without 2 array ?
// after that what should I do ?
</script>
中存储了多少数据,并在发布后查看数据库已增加。但是在使用database
之后,我只会返回pm.sendrequest
。具有第一个>最后一个测试代码,确认该帖子未插入。
我已经尝试了邮递员网站建议的代码,而现在我正在尝试在github表单上找到的代码。但是无论我发现什么,我都能得到的是AssertionError
。
似乎发生了什么,就是该链接在我的编码中工作正常。我用AssertionError
进行了检查。然后又回来了
200 status
我希望商店可以保存,但是错误说它得到的却是整个数据库:
In this sendrequest, the error seems to occur.
pm.sendRequest({
url: 'https://quiz.clow.nl/v1/score',
method: 'POST',
body: {
mode: 'raw',
raw: JSON.stringify({ student: "s1132653",
quizMaster: "jr0103374",
points: "20",
time:"3600"})
}, function(err, response) {
const jsonResponse = response.json();
}});
pm.sendRequest("https://quiz.clow.nl/v1/highscores/s1133824/get", function (err, response) {
console.log(response.json());
});
responseJson = JSON.parse(responseBody);
var lastlist = responseJson.length;
tests["Validate list has increased"] = firstlist < lastlist;