我在加特林用户脚本中有一个方法,如下所示。这个脚本是用 gatling 2.3 编写的。
def registerAddress: ChainBuilder = {
exec(ws("WS Register Address").wsName(id)
.sendText(prefetchAddress)
.check(wsAwait.within(30).until(1).regex("success").exists))
.exec(ping)
}
我将其转换为 gatling 3.0,当我尝试运行它时,出现以下错误。
value check is not a member of io.gatling.http.action.ws.WsSendTextFrameBuilder
我到处搜索,但找不到与WsSendTextFrameBuilder
类相关的文档来相应地更改方法调用。
有谁知道与此类相关的文档或解决此问题的方法?
谢谢你。