automation

Any Open Source Tools to test the FLASH Application ?

I have tried with the below things , FlashSelenium FlashWatir Except these any other tools available ? ...

Software to Improve OCR Results Based on Output from Multiple OCR Software Packages

Is there an already-existing piece of commercial or academic software that can overlay results from multiple OCR packages (Abbyy FineReader, Adobe Acrobat Professional, ReadIris, etc.) provide fully automated improvements based on accumulated knowledge from multiple sources allow for use of additional external tools setup at runtime (d...

Automated content creation for the web?

I see a lot of new websites lately which create automated content, most notable SiteGuruji and 7zoom: http://www.siteguruji.com/site/youtube.com Is there an application framework or text analysis framework available to create such sites? SiteGuruji is doing full SEO analysis of the sites as well. Is there an SEO analysis library availa...

Script/App that automatically compiles and compresses js files as you save

I'm building a web site and have multiple js files all in one directory. When I save any one of the js files I want a script to run that will compile and compress all files using the google closure compiler jar. Example from Google Closure Compiler README: java -jar compiler.jar --js=in1.js --js=in2.js ... --js_output_file=out.js Is ...

How can I (externally) automate or script the creation and duplication of projects in Eclipse?

I work on several different projects which use feature branches; that is to say, each feature is implemented on an independent branch. I frequently need to switch between branches rapidly, or test different branches against each other (to see if a branch introduces test failures, or to use a client program in one branch against a server...

Automating tasks with PHP

i wonder how can i schedule and automate tasks in PHP? can i? or is web server features like cron jobs needed. i am wondering if there is a way i can say delete files after say 3 days when the file are likely outdated or not needed ...

Automatically call all functions matching a certain pattern in python

In python I have many functions likes the ones below. I would like to run all the functions whose name matches setup_* without having to explicitly call them from main. The order in which the functions are run is not important. How can I do this in python? def setup_1(): .... def setup_2(): .... def setup_3(): ... ... if...

Automate localization of Date and Time functions

Hi all, is there any way to configure a rails application so that all Date/Time outputs are automatically localized? That means: <%= model.created_at %> equals to <%=l model.created_at %> ...

Bash: Execute script on file save?

I'd like to use Bash to run a test suite automatically when I save any file in a given directory. Is there a mechanism for bash to execute a given script on save events? Thanks. ::EDIT:: I should have mentioned that I'm on using OSX. ...

Data-handshaking with batch scripts on Hudson CI

I've installed 2 copies of Hudson CI server each on a separate Tomcat web server on my Windows machine. My task is to figure out a way to have these 2 Hudson instances communicate and interact with each other. After researching I came upon a solution, Hudson's Build-Publisher plug-in. By using this plug-in I was able to create a new job ...

Why can't I use a UI component (Windows form) inside of a Windows service?

I've seen several posts that essentially state that UI components shouldn't run as a service. I understand the rational that no one can respond to UI events etc. But the fact remains that are are many automation tasks that are only possible with Windows forms. Here is a couple of great examples: I would like to build a url crawler se...

How to iterate Outlook Inbox by Date? - Outlook OLE Automation

I'd like to iterate Outlook Inbox and I'm with Ruby. I've found some useful info here, but the order of message in Inbox is not ordered by RecevedTime(Property for Item OLE object). GetLast method may find the latest message but GetPrevious method does not work as I expected. require 'win32ole' outlook = WIN32OLE.new('Outlook.Applicat...

Web browser component (AxSHDocVw) forcing to run 32-bit IE version on 64-bit OS.

I plan on deploying a component that makes heavy use of the AxSHDocVw to automate IE on a server (making screen captures of various sites). The server in question is 64-bit win2k8 box. Because Adobe can't get their friggin act together and release a 64-bit flash player, I need the AxSHDocVw to run the 32-bit version of IE so that it rend...

automating ssh login: tcl expect interact comand behaves weird

I wanted to automate ssh logins. After some research, it seemed like tcl/expect was the route to go. However, my issue is that when interact takes over my terminal, stuff doesn't work as expected (pun not intended). For example, if I resize the terminal, it does not "take". Also, sometimes the interact is not responsive, and sometimes...

Word OLE Automation - delete first page and manipulate header and footer

Hi, I am using PHP to start Word Automation and manipulate word documents, but i guess it can be done in all any other language. What i need to do is quite simple, i need to remove the first page and add header and footer. Here is my code: $word = new COM('word.applicantion'); $word->Documents->Open('xxx.docx'); $word->Documents[1]...

Python package for Microsoft Active Accessibility library?

Is there a package for Microsoft Active Accessibility library other than http://pypi.python.org/pypi/pyAA/2.0 which seems to have been abandoned (I can't seem to get the source code from sourceforge )and does not support Python 2.6. Thanks. ...

Programmaticly make clicks on a webpage

There is a onmousedown event on a webpage. I want to be able to have this event called from my app and have the WebBrowser object move to that page. How can I achieve this? ...

How do I make sure my website blocks automated tools like Selenium

I'd like to make sure that my website blocks automation tools like Selenium and QTP. Is there a way to do that ? What settings on a website is Selenium bound to fail with ? ...

COMException when creating COM object for Excel Automation in C#

I've got this error when I create a COM object in order to use Excel automation. Any one knows why I am getting this error? System.Runtime.InteropServices.COMException(errorCode = -2146959355) Message: Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 8008...

Wordpress | Automatically repost entries to the start page by date

Hi, I'm looking for a solution to regularly show a post on the startpage. The way to archieve this is to update the last modification date of a post, which can be easily done using an SQL statement. Alas this skips the regular Wordpress update hooks such as "post new entries to twitter". So I'm looking for a PHP cronjob script to "emu...