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

  • SEARCH
  • Home
  • 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 4006780
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T08:33:19+00:00 2026-05-20T08:33:19+00:00

ok, I am a new learner to node.js: when I try to load google.com,and

  • 0

ok, I am a new learner to node.js:
when I try to load google.com,and exec the script in the page,like this:

var zombie=require("zombie");
browser = new zombie.Browser({ debug: true })
browser.visit("http://www.google.com",function(err,_browser,status){
    if(err){
        throw(err.message);     
    }
})

but get error:

28 Feb 16:06:40 - The onerror handler

 on target 

{ frames: [ [Circular] ],
  contentWindow: [Circular],
  window: [Circular],
…………………………

what can I do?

  • 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-05-20T08:33:20+00:00Added an answer on May 20, 2026 at 8:33 am

    The actual error message is hidden part way down the error output. Within the browser.visit function, add…

    console.log(err.message);
    

    …above throw(err.message);. This should give you a better indication of what’s going wrong 🙂

    EDIT: Having tested node 0.4.1 / zombie 0.9.1 on http://www.google.com, it looks like a javascript error (ILLEGAL TOKEN) is causing the problem. You can circumvent javascript errors by setting up your zombie code like so:

    browser = new zombie.Browser();
    browser.runScripts = false; // this disables executing javascript
    browser.visit("http://www.google.com/", function (err, browser) {
      if (err) { console.log('Error:' + err.message); }
      else { console.log('Page loaded successfully'); }
      // ... rest of your code here
    });
    

    Personally, I don’t find the current zombie error output very helpful, so I prefer to turn it off and display a simple console.log message when something goes wrong.

    Lastly, you can also debug errors by passing in debug: true to the browser function:

    browser = new zombie.Browser({ debug: true });
    

    This will output all calls (inc. ajax) and might help to pinpoint the source of an error.

    Good luck!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new in the world of Node.js According to this topic: What is Node.js'
I am new learner to jquery/js. I am having difficulties making a scroll tab
New to PHP and MySQL, have heard amazing things about this website from Leo
I am a new visual basic learner and I already have some difficulties in
Hello stackoverflow pals.I am a new rails learner. My question is: I am listing
I need to display a text like this on my PDF using iTextSharp Recommendation
i am new opengl learner. i know there is build in function to draw
I am a new Database programming learner. I am using C# (.NET 3.5) along
as a learner, and a new one to wordpress, i am trying to learn
I am a new learner of html and jquery. Please help me how I

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.