You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, in general Envelope can run nested loops. In the current version (v0.6.1) this is known to work when the values are provided by a range or by a step. In the next minor version (v0.7.0) this will also work when the values are provided by a list.
Here's an example of using a range for the outer loop and a step for the inner loop:
Hi,
Can envelope run nested loops ?
For Example how to implement following logic in envelope,
for (String str:values)
{
for(String str1:values2){
somestep(str1,str)
{
}
The text was updated successfully, but these errors were encountered: