Questions tagged [automation]

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.

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.

The term was originally used to refer to the operation of machinery without human supervision, frequently in manufacturing processes.

It is now used to refer to a variety of processes, including:

Examples of Stand-Alone Automation Tools

23535 questions
4
votes
1 answer

Delphi and Excel.FormatConditions

I am having problems setting up Conditional Formatting from Delphi XE2 using Early binding with Excel 2010 The Macro I am trying to reproduce is as follows: Selection.FormatConditions.Add Type:=xlCellValue, Operator:=xlGreater, _ …
Dan Kelly
  • 2,634
  • 5
  • 41
  • 61
4
votes
1 answer

How to make JScrollPane/JTextPane "Intelligent"

So, i have a situation where, a scrollbar needs to scroll automatically when meets a certain logical situation. In my case, i have few lines written on JTextPane, and i am highlighting the words.So, when the point is reached,where the text is not…
joey rohan
  • 3,505
  • 5
  • 33
  • 70
4
votes
0 answers

Automating button click for the Windows Security popup with Python

I'm using the win32gui library to get a handle to the Windows Security popup and use win32con to click the "Install" button within but without success. Has anyone done this before successfully in Python? I know I can always install the certificate…
user_noname_00
  • 269
  • 3
  • 8
4
votes
4 answers

How to give input to python console and validate the output programmatically?

For this sample program N = int(raw_input()); n = 0; sum = 0; while n
Sathish
  • 409
  • 8
  • 24
4
votes
5 answers

Sikuli logging settings

I'm using sikuli-script.jar in my java application. It writes a lot of logging messages in the console. So, I want to disable logging or change the logging level. How I can do this? What logging library is used there and how it can be configured?
NullPointer
  • 924
  • 14
  • 27
4
votes
1 answer

Find components of external java applications and use them

My problem looks like: I have an external application written in java which I start. Next is to start my application. It should find the JTextFields of external application and set proper text values for them. At the end, fires the JButton which is…
4
votes
2 answers

Automatically filling out web forms and returning the resulting page

This is my first time posting here. I greatly appreciate any and all guidance on this subject. I'm trying to make a program that automatically fills in web forms and submits the data, returning the resulting page to the program so it can continue to…
Baozi
  • 68
  • 1
  • 1
  • 7
4
votes
4 answers

StaleElementReferenceException: Element is no longer attached to the DOM: Selenium

I am completely new to automation testing. After referring some tutorials, I have created an automated test case. The test case I try to automate is to check whether the sorting worked correctly after I click on one of the headers of a table. My…
user1400538
  • 855
  • 5
  • 24
  • 42
4
votes
2 answers

Flash Automation using Selenium web driver

We are trying to automate a web application which has Flex based functionality using Selenium web driver. We are struck here as we learnt that we need to rely on third party extensions to get this done. We explored few options like: 1.Robot…
user1898154
  • 41
  • 1
  • 1
  • 2
4
votes
1 answer

How to automatically launch iOS application when a bluetooth connection is established?

So basically what I want to do as the title says is when I have a bluetooth connection established to my iOS device, an application should automatically start. How can I do that? Observation: GameKit is used for the connection.
andreihondrari
  • 5,743
  • 5
  • 30
  • 59
4
votes
1 answer

Formfields.BookMarks.get_Item().Checkbox.Value doesn't work (automation word)

I'm trying unsuccessfully to change the value of a word Checkbox (from developer tab) via automation in C#. I've tried different ways but the only one I always find when I search on internet is : find the name of the checkbox by clicking on…
Daft
  • 171
  • 1
  • 1
  • 9
4
votes
3 answers

XStream short dynamic aliases

I want to have short names for classes, now i can do it with aliases XStream x = new XStream(); x.alias("dic", Dic.class); but i have to define alias manually for every class, is there any way to configure xstream to do it automatically?
IAdapter
  • 62,595
  • 73
  • 179
  • 242
4
votes
2 answers

Automation of Xcode project for iOS

I did 4 iphone application for different different categories of industry. Now I want to make more application for same category. So I want to know about how to make an iPhone project using any other scripting .. eg.. applescrippting, command line…
jayraj m.g.
  • 625
  • 5
  • 18
4
votes
1 answer

Automation scripts: is it possible to find particular text on the screen?

I am creating automated scripts using T-Plan Robot, a Java based tool which logs into an SUT machine. Currently the way I'm handling where the mouse cursor should click is by using mini screenshots of locations using a "waittomatch" or "compareto"…
4
votes
5 answers

Delete a file after user download prompt

I think this is pretty simple. My program will create an Excel file on the server using Automation. After that, I want to force the user to choose whether or not to download it, then, regardless of the choice, delete the file so it won't just take…
Matthew Jones
  • 25,644
  • 17
  • 102
  • 155