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.
在这个问题中,anObjectA创建了一个会话变量,用于ObjectB
ObjectA
ObjectB
如果 ObjectA 未能设置“GroupName”变量,则 ObjectB 将无法执行。
如何在ObjectB上下文中检查会话变量“GroupName”是否存在?
gatling EL 支持检查会话中是否存在变量。所以你可以做这样的事情......
exec(ObjectA) .doIf("${GroupName.exists()}") { exec(ObjectB) }