Skip to content

Iterate through multiple get calls. #559

@bora19

Description

@bora19

Im trying to iterate through multiple devices and getting the response from each device. But since frisby requires return to work then I cannot use it in a for loop.

Is there any way to loop through multiple devices.

ex. device 123456 gets a response then I grab that response and save it in a text file then I want to continue looping through the rest of the devices and save the response on text file.

basic form:
for (i = 0; i < foo.length; i++) {
return frisby.get(baseUrl + foo[i]+ endPoint)
.then(function (res) {
console.log('HERE');
});
}

The above will only process the 1st iteration due to the required return. Is there a way to bypass it?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions