Skip to content

Commit

Permalink
Update fulfillment.spec.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Adameddy26 authored Jun 17, 2024
1 parent 2196c3f commit 3608e16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/fulfillment.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ test('Fulfillment', async () => {
console.log(`${dropdownItems.length} facilities found`);

let facilityRunCount = 0;
for (let i = 0; i < dropdownItems.length && facilityRunCount < 3; i++) {
for (let i = 1; i < dropdownItems.length && facilityRunCount < 3; i++) {
await dropdownItems[i].scrollIntoViewIfNeeded();
const facilityName = await dropdownItems[i].textContent();
await dropdownItems[i].click();
Expand Down

0 comments on commit 3608e16

Please sign in to comment.