Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个创建新用户的 REST 请求。我也有一个检索用户 ID 号的请求。我想在 LoadUI 中多次加载测试检索 ID 号。问题是我只需要创建一次用户,但 LoadUI 每次都会循环返回并创建用户。有没有办法让创建一个新用户的请求只运行一次或在设置中运行?
在单独的测试用例中隔离创建用户。
然后禁用该测试用例
然后创建一个运行您的测试用例的安装脚本。或者甚至可能只是一个测试步骤。
然后您的创建用户只会在开始时被调用一次。