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 7013993
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:27:46+00:00 2026-05-27T22:27:46+00:00

I can inspect any Javascript-generated DOM by using Firebug or another debugger. Firebug also

  • 0

I can inspect any Javascript-generated DOM by using Firebug or another debugger. Firebug also allows me to interactively copy the generated innerHTML of any element onto the Clipboard such that I can save it to the disk.

Is there a system/tool that allows to perform these interactive tasks programmatically? Such a tool/plugin should be able to read the Javascript-generated DOM and save it to the disk programmatically.

  • 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-27T22:27:47+00:00Added an answer on May 27, 2026 at 10:27 pm

    I don’t know of any existing tool that would allow you to do this, so you probably need to write your own script to solve this task.

    You can certainly use a library like Selenium to achieve this. Using it, you can even choose which browser you want to use to render the website.

    If you are running on Linux, I can also recommend my own project webkit-scraping for this (this recommendation is a bit biased, of course ;). It uses an in-memory Webkit instance to render the page and execute the Javascript in it. After compiling the server with cd webkit-server && qmake && make, you can do something like this in Python:

    import os, sys
    
    sys.path.insert(0, '/path/to/webkit-scraping/lib')
    import webkit_scraping
    
    URL = 'http://example.org'
    OUTFILE = '/tmp/example.html'
    
    if __name__ == '__main__':
      # set up a web scraping session
      driver = webkit_scraping.webkit_server.Driver()
      sess = webkit_scraping.scraping.Session(driver = driver)
      sess.visit(URL)
    
      with open(OUTFILE, 'wb') as f:
        f.write(sess.body())
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I freeze Javascript in firebug so that i can inspect the changes
Is there any command using which we can inspect a object in command line
In Ruby 1.9.2 you can inspect the parameters of any method using method(:symbol). How
Is there a tool for windows that we can use to inspect any SQL
In Ruby, you can do foo.inspect and it outputs something sane for any object
Can anyone (maybe an XSL-fan?) help me find any advantages with handling presentation of
Using introspection In Flex I can say: var classInfo:XML=describeType(SomeObject); Which will list for me
How can i check/inspect the performance of some network application via observing the port
I'm interested in the existence of any tools which can perform static analysis against
When an exception occurs in Python, can you inspect the stack? Can you determine

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.