赛普拉斯:我想从JSON获取数据并将其作为参数传递给其他测试

时间:2020-08-24 08:56:39

标签: command cypress

我有一个POST登录请求。 它返回带有“ accessToken”的JSON。 为了执行将来的REST调用,我必须使用标头中的“ accessToken”作为授权。

所以我创建了一个命令,例如:

synchronized

....

在测试中,我想使用返回的access_token:

// rest of the code

class Buffer {
    private int counter = 0; 
    // added synchronized keyword to let only one thread
    // be it inc or dec thread to manipulate data at a time
    public synchronized void inc() { counter++; }
    public synchronized void dec() { counter--; } 
    public int getCounter() { return counter; }
}

// rest of the code

0 个答案:

没有答案