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.
0
votes
0answers
37 views
Selenium firefox profile opening pdf read when pdfjs.disabled is true
I am trying to download a pdf file using Selenium web driver with Java. This was working fine the last time I run it about 2 weeks ago, but now every time it clicks on the pdf link it is opening the ...
2
votes
1answer
265 views
Why are exceptions, that are caught in the UI automation client, appearing in the UI being automated?
A little background...
I am developing a UI automation app that randomly interacts with controls on our UI. Both the app and the UI being automated are WPF applications. I am using the UI Automation ...
0
votes
1answer
29 views
Automating already existing python program
So I have a program that takes the .txt data (set of integer numbers), makes a sum every n numbers (divisions), and puts that result in a new list. And then it makes a bar chart of that list.
And so ...
1
vote
0answers
20 views
Windows command to copy file forcefully when that file is used by another process [migrated]
I am copy a file using copy command. But its throwing some error.
copy /y ..\BuildLog.htm .
Error is : The process cannot access the file because its used by another process
XCOPY /Y is also ...
0
votes
2answers
27 views
Can I use Shell or Python realize calling a C programe and give all the parameter it requires?
I have met a problem and I have no knowledge that whether this can be realized in Shell like Bash or Python.
I need to run a C programe several times, the programe is "atompot" for TEM image ...
0
votes
0answers
16 views
How does one create a trigger which when a data set is entered for a new week, a calculation is performed on the previous week's data set in MySQL?
Lets say I have 2 tables:
DROP TABLE IF EXISTS `datasetCalculation`;
DROP TABLE IF EXISTS `dataset`;
CREATE TABLE IF NOT EXISTS `dataset`(
`datasetID` INT NOT NULL AUTO_INCREMENT,
...
0
votes
0answers
12 views
MSBUILD.EXE gives exception: MSB1025: An internal failure occurred while running MSBuild
I am trying to generate the build using the TFS automated process.
When i add a database project to the projects to build. The TFS build process fails givng erre MSB1025
Found a workaround to set ...
7
votes
7answers
8k views
Equivalent of AutoIt for Mac OS X? [closed]
AutoIt is a Windows tool to automate UI tasks, for testing or scripting. It supports basic commands like moving the mouse, clicking its buttons, simulating keystrokes. Beyond that it also recognizes ...
0
votes
1answer
14 views
automate setup of IBM RAD and Websphere
In a project we a forced to use IBM RAD and Webspher Application Server (6.1).
Setting up the development environment is currently described in about 10 pages of wiki documentation and takes about a ...
0
votes
0answers
9 views
for /f run powershell escape characters
When I run the following in cmd prompt, it works fine
pushd "C:\Converter"
for /f "delims=" %g in ('dir "C:\Toconvert" /b /s /ad') do (powershell .\BatchConvert.ps1 "%g" 10)
popd
It executes the ...
16
votes
10answers
7k views
How to reload/refresh a web page without leaving my web development IDE?
Building Websites
When I build websites I use 2 monitors. I have my development IDE on the main monitor and the web page open on the secondary screen.
I get annoyed that everytime I need to refresh ...
0
votes
1answer
44 views
Mouse Hover in selenium Ruby using capybara [duplicate]
Searching from many forums i got the code to hover the mouse over an element
.I want to hover the mouse over a thumbnail image.
i put html element ".thumbnail" as class inside find_element method .I ...
7
votes
9answers
8k views
Cron job to run on the last day of the month
I need to create a cron job that will run on the every last day of the month.
I will create it from cpanel.
Any help is appreciated.
Thanks
0
votes
0answers
24 views
Is it possible to create an installer to install other .exe files?
Is it possible to build an installation script through whatever language to install .exe files?
I am trying to install other .exe files through an installation package, where it will automatically ...
0
votes
1answer
46 views
Firefox produces unsearchable pdfs
Currently I'm writing software for web automation using selenium and autoit.
I've found a strange issue, that for some pages when printing to pdf with firefox I get unsearchable pdfs. I've tried ff ...
0
votes
2answers
58 views
PHP script to automate login and form submit
I have an external site which requires me to
a. login
b. post form (with 2-3 dyanamic parameters)
I need a PHP script to automate this behavior. i.e. the script should first login with a ...
0
votes
2answers
171 views
AIR app signing without password
I have a build server that generates our signed packages for deployment. However, I would prefer not to embed our passwords for signing the package in our ant file. Is there a way to get around ...
0
votes
0answers
20 views
How to capture File Up Load Dialog and auto fill in file name and click OK in C#
I am going to create a small program to monitor File Upload Dialog, whenever it is open by an upload file button click from a web page, get the handle of the dialog and fill in the name/path of a ...
0
votes
2answers
181 views
Run unit test when saving file in PhpStorm
I have set up PhpStorm 5 with PHPUnit, and I'm curious if PhpStorm might have some functionality that will automatically run a unit test when saving a file. Like watchr and guard. I have tried search ...
1
vote
1answer
30 views
Is there a way to have selenium store the cookie so I can call it, in java code?
So, basically I am using selenium to automate testing against a web application.
I am using Java imported in from the Selenium IDE of the basic steps and then I am adding some additional Java code.
...
1
vote
1answer
36 views
Error calling similar() in Sikuli
l = find("Start_menu.png").similar(0.5).anyColor()
click(l)
The above is an excerpt from my code. "Start_menu.png" refers to an image of the Windows Start Menu. I got the following error when I ...
2
votes
5answers
3k views
Automation: how to automate transforming .doc to .docx?
I have a bunch of .doc files in a folder which I need to convert to .docx.
To manually convert the .doc to .docx is pretty simple:
Open .doc in Word 2007
Click on Save As...
Save it as .docx
...
0
votes
0answers
17 views
UI automation seems to run in background without launching browser
I'm trying to setup Jenkins to execute our UI automation(Ranorex) tests. When the job runs, the IE browser does NOT launch, thus the tests don't run.
Is there some setting that I'm missing here?
...
2
votes
2answers
314 views
Use browser to run custom JavaScript on page (client side) to simulate clicking? How to do?
I want to automatically grab some content from a page.
I wonder if it is possible:
Run my own written JavaScript on the page after the page is loaded (I use FireFox. I don't have the ability to ...
1
vote
2answers
1k views
How to take screen shot using Sikuli?
I need to use Sikuli for automation but I am unable to take screenshots. The problem is that when I click on "Take Screenshot" or "Create Region" the IDE gets hidden but selecting area option does not ...
0
votes
4answers
142 views
Is there a script I can run to remove all the hard (carriage) returns in a .txt file?
I have a .txt (Mac OS X Snow Leopard) file that has a lot of text. At the end of a paragraph, there is a hard return that moves the next paragraph onto another line. This is causing some issues with ...
-1
votes
0answers
20 views
Hover the mouse over thumbnail image in capybara [duplicate]
I have a thumbnail image on a page. When hovering mouse over the thumbnail I have to display a hover modal. But I can't figure out how to hover mouse over the thumbnail image. I can test it using ...
0
votes
0answers
11 views
Is there a tool for automated html diff regression testing?
Is there a tool which can scrape two versions of my application and give me a report on the HTML differences between them? Preferably with the ability to remove numbers/newlines/spaces and render the ...
0
votes
0answers
9 views
How can I create an automated script in MySQL which Alters a status field based on the date?
I have a table like this:
CREATE TABLE IF NOT EXISTS `stats`.`league` (
`leagueID` INT NOT NULL AUTO_INCREMENT,
`numPlayers` TINYINT,
`status` CHAR(4),
`startDate` DATE,
PRIMARY ...
0
votes
0answers
37 views
Automating tables creation with VBA code [closed]
Hi I have a challenge for the VBA savvy geniuses here. I am still a newbie hence here to seek your help.
I am automating processes and need a code to automate the tabulation of items in worksheets ...
0
votes
0answers
9 views
Flexget RSS for torrent
presets:
Preset_name:
regexp:
accept:
- DVDRip
download: ~/torrent/watch
tasks:
Task_name:
rss: http://
preset:
- Preset_name
Hello I'm using this config in ...
0
votes
3answers
535 views
UI Recorder template not found in instruments
I have installed xcode4 and used profiling for leaks and allocations, etc. However, I don't find the new UI Recorder template in instruments under iOS however I find a template named Automation. ...
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 ...
1
vote
6answers
2k views
.doc to pdf using python
I'am tasked with converting tons of .doc files to .pdf. And the only way my supervisor wants me to do this is through MSWord 2010. I know I should be able to automate this with python COM automation. ...
2
votes
1answer
2k views
Programmatically combine slides from multiple presentations into a single presentation
I need to automate the creation of a presentation (either OpenOffice or Powerpoint). The presentation should take the first two slides of each of the presentations in a given directory, and then ...
0
votes
0answers
28 views
UIDatePicker Automation using KIF dateChangedAction not called
I'm automating date selection on UIDatePicker using KIF. I added the accessibility label and set the target for the picker if the date changes.
Ref: http://bit.ly/140ICwo
+(id) changeDate: (NSDate ...
0
votes
1answer
27 views
How to add a reference to another project in my solution through Visual Studio automation
I create a new solution and add some projects to it via the Solution2.AddFromTemplate. Now before I can build my solution successfully, I need to add a project reference from one of the projects to ...
0
votes
2answers
51 views
How do I programmatically check for open browser instances on a Windows machine?
I wrote a GUI automation script in python that opens a web browser, does some tests in the browser and then closes the browser. It does so in a loop going up through hundreds of thousands of ...
0
votes
0answers
32 views
WebdriverJS and drop down menus
I am running WebdriverJS on nodeJS to test the UI of a website. I want select and click on a submenu item in a drop down menubar. The submenu items are hidden by CSS. The menubar looks like this:
...
5
votes
4answers
1k views
Heroku Cedar: How to scale WEB dynos based on time of day
I want my Rails 3.1 app to scale up to 1 web dyno at 8am, then down to 0 web dynos at 5pm.
BUT, I do not want to sign up for a paid service, and I cannot count on my home computer being connected to ...
0
votes
4answers
98 views
Using selenium 2, how to type in textbox?
I am using Selenium 2.
But after running following code, i could not able to type in textbox.
package Actor;
import org.openqa.*;
import org.openqa.selenium.By;
import ...
2
votes
1answer
5k views
VBA interaction with internet explorer
The macro I am building takes names from an Excel spreadsheet, opens Internet Explorer, and searches the online directory. After searching the directory, it pulls up a Java form with the manager's ...
1
vote
4answers
3k views
switch tabs using selenium Webdriver
Using Selenium Webdriver with JAVA ,
I am trying to automate a functionality where I have to open a new tab do some operations there and come back to previous tab (Parent).
I used switch handle but ...
0
votes
0answers
65 views
UI automation of Settings, Iphone
I am trying UI Automation in iphone for connecting to any given wifi network.
I want to automate settings app. It should automatically open up settings->switch on wifi->connect to given ap by ...
0
votes
0answers
49 views
List of Best testing tools for testing oracle forms except selenium and open script [closed]
I want to test oracle application how should I test the oracle forms or application.
If any tools available please give brief introduction.
0
votes
1answer
16 views
How to get ADB logs using eggPlant automation tool
Can anyone tell me how can we get adb logs using eggPlant automation tool.Actually i want to have adb logs for my device when running eggPlant scripts.
Please help me out in this situation.
0
votes
1answer
89 views
ChimpChat Instrumentation
I am trying to use chimpchat from a java program. I am able to successfully establish connection with two emulator instances running. But when i call instrument() function on the device, to run a test ...
1
vote
3answers
63 views
Allowed “out” parameter types in a COM automation interface
I'm implementing COM automation (dual interface) for an application. The automation interface will be called from VBScript. I'm not quite clear on what types are allowed for the method's arguments. I ...
0
votes
3answers
75 views
Call a method every x minutes
currently I have a application which can send notifications, I would like this application to be able to send these notifications automatically every x minutes (for example, 15 minutes is the ...
0
votes
0answers
31 views
Set_no_wait not setting a value for a Text field
We just migrated to the latest version of WATIR(4.0.2), and the method set_no_wait does not set a value to the text field.
The text field where I set a value triggers a pop up, and--hence on using ...





