Questions tagged [chickenfoot]

Chickenfoot is a Firefox extension which provides an end-user API for editing web pages.

Chickenfoot supports Firefox 4 and below, but is open source for compatibility and other upgrades.

6 questions
6
votes
3 answers

Automating a javascript button click

So I have a button with code like this:
madmod
  • 189
  • 1
  • 3
  • 9
1
vote
2 answers

Automation tool for Firefox that can manipulate User-Agent or Referrer?

I need to automate some processes in Firefox via Chickenfoot, Greasemonkey, iMacros or any other automation tool. Is any of them allows to change the browser's User-Agent or Referer/Referrer fields? Thanks a lot! EDIT: I see people mention to use…
PHPguy
  • 197
  • 2
  • 3
  • 8
0
votes
1 answer

How to save images from web pages to local disk, using Chickenfoot Firefox extension

How to save images from web pages to local disk, using Chickenfoot Firefox extension? writeBytes(filename: string or nsIFile, data: string) the function is provided by Chickenfoot to Writes data to the given file, completely replacing the file's…
0
votes
3 answers

Saving PDF files with Chickenfoot

I'm writing a web-crawler using Chickenfoot and need to save PDF files. I can either click the link on the page or grab the PDF's URL and use go("http://www.whatever.com/file.pdf") and I get the firefox "Opening file.pdf" dialog box, but can't…
alaiacano
  • 693
  • 1
  • 5
  • 10
0
votes
1 answer

Why this XPath sentence is wrong for Firefox?

click(new XPath("/HTML[1]/BODY[1]/DIV[1]/DIV[2]/DIV[1]/DIV[2]/DIV[1]/DIV[2]/DIV[1]/DIV[1]/DIV[2]/DIV[1]/DIV[1]/DIV[1]/DIV[1]/DIV[2]/DIV[1]/DIV[1]/DIV[1]/DIV[1]/DIV[1]/DIV[2]/DIV[1]/SPAN[1]/SPAN[2]/#text[1]")); ..or var foo =…
kagali-san
  • 2,964
  • 7
  • 48
  • 87
0
votes
1 answer

Chickenfoot JS question

I am trying to make firefox automatically visit a set of webpages and report to me somehow how much it took to load each page. My best option so far seems to be the ChickenFoot extension. The following program however always outputs the same load…
nikifor
  • 31
  • 3