vote up 2 vote down star

Hello,

I need to automate navigation around a JavaScript powered website so I can scrape some content. I came across Chickenfoot, which is a FireFox extension that gives me a programming interface to the browser.

Do you know of other solutions?

flag

1  
+1 for introducing me to Chickenfoot – Matthew Lock Nov 9 at 7:32

4 Answers

vote up 0 vote down check

I also checked out IMacros, but you need to pay for a lot of the advanced features. So I will stick with Chickenfoot. There is a neat video about Chickenfoot here.

link|flag
vote up 2 vote down

You can automate Internet Explorer pretty easily from either javascript (.js files) or any other language that can use COM (c#, perl etc)

http://msdn.microsoft.com/en-us/library/aa752084%28VS.85%29.aspx

Simple example in vbscript:

Dim objIE
Dim objWebForm
Dim objDoc
dim leCount
dim objElement
dim objElementCollection
dim leIndex

Set objIE = WScript.CreateObject("InternetExplorer.Application")
objIE.AddressBar = true
objIE.Visible = true

Sub WaitForLoad (objIE)
  Do While objIE.Busy
    WScript.Sleep(1000)
  Loop
  WScript.Sleep(500)
End Sub

objIE.Navigate("http://www.softtesting.org/")
WaitForLoad(objIE)
set objDoc = objIE.document

Set objElementCollection = objDoc.getElementsByTagName("a")
leCount = objElementCollection.length
For leIndex = 0 To leCount-1
    Set objElement =  objElementCollection(leIndex)
    If (("http://www.softtesting.org/forum/")=objElement.href) Then
        objElement.Click()
    End If
Next

http://social.msdn.microsoft.com/Forums/en-US/windowsaccessibilityandautomation/thread/6c47aaec-6beb-4b21-95b2-95186f5bb4a5

link|flag
unfortunately I'm on linux...looks neat though – Richard Nov 11 at 4:35
vote up 3 vote down

WWW::Mechanize has several extensions/compatible replacements to handle JavaScript: WWW::Mechanize::FireFox, WWW::Mechanize::Plugin::JavaScript/WWW::Scripter::Plugin::JavaScript, Mozilla::Mechanize, Gtk2::WebKit::Mechanize, Win32::IE::Mechanize.

link|flag
is there a Python equivalent? – Richard Nov 11 at 23:03
vote up 2 vote down

Check out Selenium.

link|flag
I found this really complex to setup – Richard Nov 11 at 23:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.