vote up 4 vote down star

Been scouring the net for something like firewatir but for python. I'm trying to automate firefox on linux. Any suggestions?

flag

50% accept rate

6 Answers

vote up 0 vote down check

The PyXPCOM extension is one possibility.

But looking at what firewatir provides, I have to 2nd the suggestion for twill. It's based on mechanize, which might also be useful in this context.

link|flag
mechanize ended up giving me the most functionality...thx – RJBrady Jul 8 at 13:39
vote up 1 vote down

I use Selenium RC. All my tests are written in Python and are run with test suite.

One minor thing is that You either have to start selenium manually and point Your tests to it or start selenium from test suite which requires little bit of coding. But it's doable.

Generally I'm very pleased with this solution.

link|flag
Do I still need Java for Selenium Server running? – legesh Jul 6 at 13:28
Yes, as Selenium is written in Java. – Łukasz Jul 21 at 11:45
vote up 0 vote down

Install Mozlab in Firefox and enable the telnet server, then open a socket.

link|flag
vote up 0 vote down

See if twill can help you. It can be used as a command line tool or as a python library.

link|flag
vote up 3 vote down

You could try selenium.

link|flag
vote up 0 vote down

The languages of choice of Firefox is Javascript. Unless you have a specific requirement that requires Python, I would advice you to use that.

link|flag

Your Answer

Get an OpenID
or

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