Automation is the process of having a computer do a repetitive task or a task that requires great precision or multiple steps, without requiring human intervention.

learn more… | top users | synonyms

163
votes
14answers
52k views

Auto Scale TextView Text to Fit within Bounds

I'm looking for an optimal way to resize wrapping text in a TextView so that it will fit within its getHeight and getWidth bounds. I'm not simply looking for a way to wrap the text- I want to make ...
24
votes
14answers
13k views

headless internet browser? [closed]

I would like to do the following. Log into a website, click a couple of specific links, then click a download link. I'd like to run this as either a scheduled task on windows or cron job on Linux. I'm ...
38
votes
8answers
13k views

How can I beautify JSON programmatically?

Do you know of any "JSON Beautifier" for JavaScript? From {"name":"Steve","surname":"Jobs","company":"Apple"} To { "name" : "Steve", "surname" : "Jobs", "company" : "Apple" } Example ...
120
votes
12answers
14k views

Nant or MSBuild, which one to choose and when?

I am aware there are other nant and msbuild related questions on stack overflow, but I could not find a direct comparison between the two and so here is the question. When should one choose Nant over ...
20
votes
8answers
7k views

Is there a PHP equivalent of Perl's WWW::Mechanize?

I'm looking for a library that has functionality similar to Perl's WWW::Mechanize, but for PHP. Basically, it should allow me to submit HTTP GET and POST requests with a simple syntax, and then parse ...
8
votes
5answers
27k views

How to use WebBrowser control DocumentCompleted event in C#?

Before starting writing this question, i was trying to solve following // 1. navigate to page // 2. wait until page is downloaded // 3. read and write some data from/to iframe // 4. submit (post) ...
15
votes
6answers
6k views

Fastest way to interface between live (unsaved) Excel data and C# objects

I want to know what the fastest way is of reading and writing data to and from an open Excel workbook to c# objects. The background is that I want to develop a c# application that is used from Excel ...
9
votes
6answers
14k views

Programmatically add trusted sites to Internet Explorer

I'm doing an IE automation project using WatiN. When a file to be downloaded is clicked, I get the following in the Internet Explorer Information bar: To help protect your security, Internet ...
8
votes
6answers
10k views

Creating, opening and printing a word file from C++

I have three related questions. I want to create a word file with a name from C++. I want to be able to sent the printing command to this file, so that the file is being printed without the user ...
42
votes
8answers
10k views

Dead code detection in legacy C/C++ project

How would you go about dead code detection in C/C++ code? I have a pretty large code base to work with and at least 10-15% is dead code. Is there any Unix based tool to identify this areas? Some ...
12
votes
13answers
12k views

c# and excel automation - ending the running instance

I'm attempting Excel automation through C#. I have followed all the instructions from Microsoft on how to go about this, but I'm still struggling to discard the final reference(s) to Excel for it to ...
23
votes
17answers
11k views

Automated Web UI Testing [closed]

What are the good automated web UI testing tools? I want to be able to use it in the .Net world - but it doesn't have to written in .net. Features such as a record mode, integration into build ...
39
votes
11answers
23k views

How can I automate the “generate scripts” task in SQL Server Management Studio 2008?

I'd like to automate the script generation in SQL Server Management Studio 2008. Right now what I do is : Right click on my database, Tasks, "Generate Scripts..." manually select all the export ...
18
votes
27answers
2k views

What code metric(s) convince you that provided code is “crappy”?

Code lines per file, methods per class, cyclomatic complexity and so on. Developers resist and workaround most if not all of them! There is a good Joel article on it (no time to find it now). What ...
11
votes
4answers
22k views

How to Automatically Start a Download in PHP?

What code do you need to add in PHP to automatically have the browser download a file to the local machine when a link is visited? I am specifically thinking of functionality similar to that of ...
9
votes
4answers
4k views

Programmaticly building htpasswd

Is there a programmatic way to build htpasswd files, without depending on OS specific functions (i.e. exec(), passthru())?
42
votes
8answers
20k views

Choosing a Windows Automation script language. Autoit vs Autohotkey [closed]

I need to choose a windows automation program. Which one do you recommend? AutoIt, AutoHotkey, others? I have read http://paperlined.org/apps/autohotkey/autoit_and_autohotkey.html , interesting ...
22
votes
5answers
29k views

How do I copy a file to a remote server in python using scp or ssh?

I have a text file on my local machine that is generated by a python script run daily in cron. I would like to add a bit of code to have that file sent securely to my server over ssh. Help.
15
votes
5answers
16k views

How can I unlock the screen programmatically in Android?

I am working on a remote automated test framework for Android based on JUnit (tests run outside android, interacting with code inside it). It's all working fairly well, but one issue I have is that ...
8
votes
3answers
8k views

How to put the WebBrowser control into IE9 into standards?

i am using automation (i.e. COM automation) to display some HTML in Internet Explorer (9): ie = CoInternetExplorer.Create; ie.Navigate2("about:blank"); webDocument = ie.Document; ...
7
votes
2answers
2k views

GDB auto stepping - automatic printout of lines, while free running?

I often end up needing this, and I'm not even sure I formulated my question correctly - but cannot really find any related simple explanation ... In essence, I would like to be able to set a ...
10
votes
2answers
501 views

Can a Perl script install its own CPAN dependencies?

I have a Perl script that has two dependencies that exist in CPAN. What I'd like to do is have the script itself prompt the user to install the necessary dependencies so the script will run properly. ...
4
votes
5answers
14k views

How to get the range of occupied cells in excel sheet

I use C# to automate an excel file. I was able to get the workbook and the sheets it contains. If for example I have in sheet1 two cols and 5 rows. I wanted o get the range for the occupied cells as ...
2
votes
2answers
2k views

simulate backspace key with java.awt.Robot

There seems to be an issue simulating the backspace key with java.awt.Robot. This thread seems to confirm this but it does not propose a solution. This works: Robot rob = new Robot(); ...
31
votes
7answers
11k views

Android – multiple custom versions of the same app

Whats the best way to deploy several customized versions of a Android application? Currently I have a script to exchange the resource folder for getting a customized version of my app. It works ...
12
votes
10answers
6k views

UI Testing Tool?

Looking for a tool to UI testing of a Windows (.NET WinForms) application. The idea is that the analysts will record the tests via some UI and it will be able to be played back over and over again. ...
4
votes
1answer
3k views

Headless browser for C# (.NET)?

I am (was) a Python developer who is building a GUI web scraping application. Recently I've decided to migrate to .NET framework and write the same application in C# (this decision wasn't mine). In ...
5
votes
3answers
2k views

Accessing an element with no attributes in Watir

Using Watir, is there a way to access an element without attributes? For example: <span>Text</span> I'd like to avoid using xpath, but if that's the only way it's cool.
7
votes
3answers
2k views

Is there a headless browser for .NET (for automated Web-UI-Tests)?

Is there a headless browser for .NET? I am looking for this in a testing context. Coming from Java I am thinking of something similar to HtmlUnit (http://htmlunit.sourceforge.net/) which itself is ...
5
votes
2answers
7k views

Programmatically extract macro (VBA) code from Word 2007 docs

Is it possible to extract all of the VBA code from a Word 2007 "docm" document using the API? I have found how to insert VBA code at runtime, and how to delete all VBA code, but not pull the actual ...
4
votes
1answer
3k views

reusing Internet Explorer COM Automation Object

I am using VBScript macros to utilize the InternetExplorer.Application COM automation object and I am struggling with reusing an existing instance of this object. From what I have read, I should be ...
3
votes
4answers
5k views

How to send input to the console as if the user is typing?

This is my problem. I have a program that has to run in a TTY, cygwin provides this TTY. When I redirect stdIn the program fails because it does not have a TTY. I cannot modify this program, and need ...
4
votes
2answers
2k views

How to export the result into different tabs of Excel in Toad for Data Analyst?

Does anyone know how to export results from more than one query into different sheets of the same Excel workbook using the report automation in TOAD for data analyst? Thank you
22
votes
4answers
6k views

Don't make me manually abort a LaTeX compile when there's an error

As suggested here, latexmk is a handy way to continually compile your document whenever the source changes. But often when you're working on a document you'll end up with errors and then latex will ...
12
votes
10answers
8k views

Gluing (Imposition) PDF documents

I have several A4 PDF documents which I would like (two into one) "glue" together into A3 format PDF document. So I will get from 2PDFs A4 a single one sided PDF A3. I have found the excellent utility ...
8
votes
6answers
3k views

Automated testing of GUI

This question isn't about unit-testing. And it is for a desktop product. This is about testing of the gui and testing that the right stuff is input in the right text box at the right time. A company ...
35
votes
1answer
6k views

mercurial automatic push on every commit

Being very familiar with the subversion workflow and that fact that 99.9% of the time my computer is connected to the internet, I don't like doing 'hg ci' and 'hg push' separately. I remember bzr ...
6
votes
5answers
3k views

Automated Test Framework - Windows CE

Looking for a way to drive a Compact Framework app running on a CE device. All we basically need is to be able to write little scripts that press buttons and click on things. Anyone know of such a ...
13
votes
4answers
73k views

automatically execute an Excel macro on a cell change

How can I automatically execute an Excel macro each time a value in a particular cell changes? Right now, my working code is: Private Sub Worksheet_Change(ByVal Target As Range) If Not ...
9
votes
8answers
11k views

Automate firefox with python?

Been scouring the net for something like firewatir but for python. I'm trying to automate firefox on linux. Any suggestions?
34
votes
2answers
22k views

How to pass an argument to a PowerShell script?

There's a PowerShell script named itunesForward.ps1 that makes the iTunes fast forward 30 seconds: $iTunes = New-Object -ComObject iTunes.Application if ($iTunes.playerstate -eq 1) { ...
4
votes
4answers
6k views

How to make the Java.awt.Robot type unicode characters? (Is it possible?)

We have a user provided string that may contain unicode characters, and we want the robot to type that string. How do you convert a string into keyCodes that the robot will use? How do you do it so ...
5
votes
5answers
19k views

Automating running command on Linux from Windows using PuTTY

I have a scenario where I need to run a linux shell command frequently (with different filenames) from windows. I am using PuTTY and WinSCP to do that (requires login name and password). The file is ...
5
votes
4answers
6k views

Accessing Excel Custom Document Properties programatically

I'm trying to add custom properties to a workbook I have created programatically. I have a method in place for getting and setting properties, but the problem is the workbook is returning null for ...
9
votes
3answers
4k views

Setting copyright statement on a per-project basis?

I'm an independent developer working primarily with iPhone applications, and I'm currently engaged in several different projects. Some are for myself, and others are for one of a number of clients. ...
4
votes
1answer
2k views

UI Automation “Selected text”

Anyone knows how to get selected text from other application using UI Automation and .Net? http://msdn.microsoft.com/en-us/library/ms745158.aspx
2
votes
1answer
2k views

Python Selenium (waiting for frame, element lookups)

I have these includes: from selenium import webdriver from selenium.common.exceptions import NoSuchElementException from selenium.webdriver.common.keys import Keys Browser set up via browser = ...
0
votes
2answers
2k views

how to handle IE Download dialog with VB Script?

how to save file automatically in particular location using VB Script ? or How is it possible to Download file to particular location in IE without interacting with Download dialog ? Ultimately I ...
0
votes
3answers
6k views

Is is possible to insert an image into an excel cell via COM?

I have used automation to insert values into a cell, however I have never seen any documentation, for example, that demonstrate inserting anything other than text and/or formula's. Has anybody been ...
12
votes
3answers
3k views

WPF Recursive call to Automation Peer API is not valid

I am receiving an error message "Recursive call to Automation Peer API is not valid" when loading a datagrid with a datatemplatecolumn containing a combobox column. The error ends up caught in our ...

1 2 3 4 5 8