http://qs321.pair.com?node_id=439102


in reply to Re: How can I test a javascript-enhanced web application on Linux?
in thread How can I test a javascript-enhanced web application on Linux?

I heard some good stories about crossover office. It runs internet explorer on linux. Apparently, it might be possible to run Win32::IE::Mechanize on it. Haven't tried it, though.
Here is a node How to install Win32::OLE under Linux? which might help. I'm using it to make SOAP service from macros in Excel. While this works, I wouldn't recommend such combination for writing intensive tests of JavaScript web application (it just seems too slow and flaky).

When writing jsFind I opted to create separate html page with tests (which takes a long time to execute) and run that manually in different browsers. This served me well (and enabled me to test JavaScript in different browsers), but than again I didn't have to check interaction with web application and it's interactive approach.

I'm very interesed in solution to this particular problem. Please keep us posted about progress.


2share!2flame...
  • Comment on Re^2: How can I test a javascript-enhanced web application on Linux?

Replies are listed 'Best First'.
Re^3: How can I test a javascript-enhanced web application on Linux?
by ForgotPasswordAgain (Priest) on Mar 13, 2005 at 20:46 UTC
    Thanks, I think actually I'll try this approach first, adapting your instructions for installing Win32::OLE to Wine. I hadn't even considered being able to run IE under Linux. (It's even a little disappointing to do that..)