Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9160741
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T13:48:31+00:00 2026-06-17T13:48:31+00:00

im using the zombie.js library , to do some testing for the dom, i

  • 0

im using the zombie.js library , to do some testing for the dom, i have this script

Browser = require "zombie"
arr = new Array("http://yahoo.com", "http://google.com", "http://msn.com")
i = 0
while i < arr.length
    b = new Browser()
    b.visit arr[i], ->
        console.log b.text "title"
    b.close()
    i++

everything works, but it only logs the msn title two times, so the while loop is logging the last item in the array twice. i can’t seem to see what the problem is?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T13:48:33+00:00Added an answer on June 17, 2026 at 1:48 pm

    You’re registering a callback for when the browser’s visit has completed. By that time, the loop has run to completion, so the variable b points to the last browser you created, which means its title will be that of MSN, not those of the other pages. In order to fix this, use a closure:

    Browser = require "zombie"
    arr = new Array("http://yahoo.com", "http://google.com", "http://msn.com")
    i = 0
    createBrowser = (url) ->
        b = new Browser()
        b.visit url, -> console.log b.text "title"
        b.close()
    
    while i < arr.length
        createBrowser(arr[i++])
    

    This works because now there is a separate scope for each browser you create, and a separate browser variable.

    Alternatively, use the callback arguments for ZombieJS’s visit function:

    Browser = require "zombie"
    arr = new Array("http://yahoo.com", "http://google.com", "http://msn.com")
    i = 0
    while i < arr.length
        b = new Browser()
        b.visit arr[i], (e, myBrowser) ->
            console.log myBrowser.text "title"
        b.close()
        i++
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I started using zombiejs, but i have some begginer questions: 1.) How testing ajax
I'm using zombie.js , a headless browser mostly for testing purposes. It creates a
using this http://bl.ocks.org/950642 we can see how to add images to nodes, the question
After I have played around for some time using R's parallel package on my
I would like to test my node.js/socket.io application using the zombie.js headless browser. Unfortunately
I'm using a php script to create image thumbnails and this error is thrown
I'm trying to find a way to remove zombie locks using the Subversion command
Using CI for the first time and i'm smashing my head with this seemingly
I've continued messing with the ZOMBIE esoteric language, and the interpreter I've been using
I need a simple AI script to make a zombie object 'walk' around randomly.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.