New answers tagged automation
1
To make your program easy to automate and to be reusable, you can make a couple of things.
Separate your core functionality (e.g., computations) from execution.
You can put the computation into a separate module and execute it form the "main" script:
# my_processing.py
def process_file(filename, divisions):
...
# process_all.py:
import my_processing
...
1
You can make a shell script like this:
echo -e 'stra.dat\nstraa.tif\n...' | ./atompot
For more control, you might want to take look at expect.
2
If the program reads from stdin, just put everything in a file:
stra.dat
straa.tif
512 512
8 8 8
n
And the run:
./atompot < filename
If you want to do something more complex (ie parse the output or implement branching), you could look into subprocess.Popen in python.
0
browser.text.include?("Third Link")
I can find the text with this but is really slow and want to specify
this particular div
...which is exactly what you did here:
browser.div(:class => "more-links").a(:text => "Third Link")
So in you original line of code, you just need to replace 'browser' with your more specific search:
...
2
This following code isn't going to return true:
browser.div(:class => "more-links").a(:text => "Third Link")
#=> #<Watir::Link:0x..f99c8864c located=false specifiers={:tag_name=>["a"], :text=>"Third Link"}>
So, the assert_equal is returning false.
If exists? is appended to that line, then it returns true:
browser.div(:class => ...
1
You can script the configuration of WAS using wsadmin:
http://pic.dhe.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=%2Fcom.ibm.websphere.base.doc%2Finfo%2Faes%2Fae%2Fwelc6topscripting.html
It is some effort to learn how to do so but in the end it saves a lot of time. You need to use Jython or Jacl to do so.
WAS profiles can be created headless with a ...
0
Adapting paxdiablo's solution, I run on the 28th and 29th of February. The data from the 29th overwrites the 28th.
# min hr date month dow
55 23 31 1,3,5,7,8,10,12 * /path/monthly_copy_data.sh
55 23 30 4,6,9,11 * /path/monthly_copy_data.sh
55 23 28,29 2 * /path/monthly_copy_data.sh
0
In Webdriver(java), we can perform mouse over action like this:
Actions actions = new Actions(driver);
WebElement imageSpan = driver.findElement(By.className("badgeFeatured"));
actions.moveToElement(imageSpan);
1
I recommend using this class:
http://semlabs.co.uk/journal/object-oriented-curl-class-with-multi-threading
It will be something like this:
$c = new CURLRequest();
$c->retry = 2;
$c->get( $url, $this->curlOpts );
$url = 'https://secure.login.co.uk/';
$opts = array(
CURLOPT_USERAGENT => 'Mozilla/5.0 (compatible; Googlebot/2.1; ...
0
You can also have a look at: https://github.com/Scyks/TDDRunner
It is console tool that execute PHPUnit autmaticly on file changes. You can also configure PHPUnit by excuting only one file ot whatever.
/usr/bin/tddrunner --group=test
A german article can be found here: http://blog.secu-ring.de/software/call-again-phpunit-test-driven-development-watcher/
...
0
for login :
php-curl-login
post a form is the same as login , so just repeat stage 1 with the new parameters
0
Uninstall JDK, which ever version you have, I too faced the same problem, but after uninstalling JDK, it was working well
0
After logging in, and the appropriate cookie has been sent to the client browser, you can then use the JavaScriptExecuter to get the value of that cookie to your Java.
Here's how I set up my JavaScriptExecuter (yours may look a little different):
//setup
ProfilesIni profile = new ProfilesIni();
FirefoxProfile ffprofile = profile.getProfile("SELENIUM");
...
-1
I've just tried Rolands suggestion below and it works - not perfectly, it misses to play some recorded interactions, but it works and creates an editable script! I'm using Xcode 4.6.2, Instruments 4.6 and running iPhone 6.1 Simulator.
0
You can do both tasks (upload and command execution) using WinSCP. Use WinSCP script like:
option batch abort
option confirm off
open your_session
put %1%
call script.sh
exit
You can then run the script like:
winscp.exe /console /script=script_path\upload.txt /parameter file_to_upload.dat
Actually, you can put a shortcut to above command to Windows ...
0
It's worth noting that Stevens answer works, but make sure if using a for loop to export multiple files to place the ClientObject or Dispatch statements before the loop - it only needs to be created once - see my problem: Python win32com.client.Dispatch looping through Word documents and export to PDF; fails when next loop occurs
0
Try this :
driver.findElement(By.id("email")).clear();
driver.findElement(By.id("email")).sendKeys("emal@gmail.com");
1
This is a simple solution for opening a new tab, changing focus to it, close the tab and return focus to the old tab:
@Test
public void testTabs() {
driver.get("https://business.twitter.com/start-advertising");
assertStartAdvertising();
// considering that there is only one tab opened in that point.
String oldTab = driver.getWindowHandle();
...
0
@Santoshsarma, your answer does not work in my tests because WebDriver focus still in the old tab. I'm using selenium-java 2.31.0 and operadriver 1.2.
@Test
public void testSolution() {
driver.get("https://business.twitter.com/start-advertising");
assertStartAdvertising();
driver.findElement(By.linkText("Twitter Advertising Blog")).click();
...
0
I guess there is no such command or something else.eggPlant identifies only object or script to execute the command.
0
chimpchat is supposed to be running on host machine, not on device, so you cannot use instrment() along with it.
0
Here is a link to a downloadable copy of Open XML Explained.
For updating charts, this docx4j code may be of interest; it shows you how to do it using docx4j; worst case, you can translate each step to C#/Open XML SDK.
0
If you want to schedule your tasks with the specified interval don't use flags AlarmManager.RTC and AlarmManager.RTC_WAKEUP with method alarm.setRepeating(...). Because in this case alarm will be bounded to the device's real time clock. So changing the system time may cause alarm to misbehave. You must use flags AlarmManager.ELAPSED_REALTIME or ...
1
find attempts to find something when it's called. So what your code says, in prose, is "find something that looks like 'Start_menu', then make the thing you found 0.5 similar, then make that any color"
This is wrong--you can't set the similarity threshold after the fact. Instead, call it as seen in the Sikuli docs.
Instead, say
l = ...
0
Ok I did this using expect tool (free). Here install.sh is the file I want to execute automatically and send are my options in response to the questions it asks during installation. Let me know if any problem following this.
!/usr/local/bin/expect
spawn "./install.sh"
set timeout 2
expect {WARNING: It is strongly recommended that you install RVS as root. Do ...
0
Using Firepath for finding out CSS locators is a great idea, but I will suggest you not to use CSS locators for writing an automated script. This is because the CSS locators are heavily dependent on CSS properties which are defined in the .CSS file.
So, If the developers changes a single property for any element then the Selenium IDE may or may not find the ...
1
You have to tell Outlook, not System Events...
tell application "Microsoft Outlook" to return class of front window is draft window
0
Types you are going to have less troubles with are listed on top of VT_xxx enumeration in Windows SDK:
enum VARENUM
{ VT_EMPTY = 0,
VT_NULL = 1,
VT_I2 = 2,
VT_I4 = 3,
VT_R4 = 4,
VT_R8 = 5,
VT_CY = 6,
VT_DATE = 7,
VT_BSTR = 8,
VT_DISPATCH = 9,
VT_ERROR = 10,
VT_BOOL = 11,
VT_VARIANT = 12,
...
1
There are two different technologies involved in your question:
COM Automation, wich evolves around the IDispatch interface and friends (especially the restricted type system which doesn't need specific marshaling code because OLEAUT does the job automatically when it gets a TLB)
VBScript, which is one specific COM Automation client.
out or in/out ...
0
Provided that, I don't have Microsoft Outlook installed, at the moment, I managed to compile this by removing "window" after "draft".
if class of front window is draft then
Take a look at the AppleScript dictionary of Outlook to see how it identifies classes: "draft" alone seems already a class identifier.
1
Obviously, when you call the interface via IDispatch, all the parameters are always passed as VARIANTs. Yet, your implementation potentially uses other types. How is the gap bridged?
ATL (assuming that's what you're using) will implement Invoke for you, with code that converts arguments from VARIANTs to the proper types used by your method signature before ...
0
If your Bapp is able to somehow invoke Win32 API - then this can be achieved by sending a custom WM_USER message to your Fapp - using SendMessage(). In your Fapp you handle this message and take appropriate action.
I don't think getting handle to a control and invoking its handler is the right way.
0
Try:
set myFolder to (choose folder)
tell application "Finder" to set myFiles to files of myFolder as alias list
repeat with aFile in myFiles
set bName to my baseName(aFile)
tell application "Finder"
set folderExists to exists folder bName of myFolder
if not folderExists then make new folder at myFolder with properties {name:bName}
...
0
If you're familiar with Python whatsoever I would definitely recommend checking out the Mechanize library. It preforms wonders in very little code for these types of things. http://wwwsearch.sourceforge.net/mechanize/
0
Found the answer, posting for future reference.
The trick is to cast the Object property of the EnvDTE.Project to VSProject and then call AddProject on its References property.
var targetProject = (VSProject) _project.Object;
targetProject.References.AddProject(sourceProject);
4
I think Dason already answered, but you could try
pdf("test.pdf")
plot(1:10,1:10)
hist(rnorm(1000))
dev.off()
With this all your graph will be sent to a .pdf file.
If you use some image format you can print a picture at time. You can adjust many parameters of your image (use par() to see all), including the size. For me pdf is nice, because of its ...
2
Thanks Friend, i got an answer. This is only possible because of your help. you all give me a ray of hope towards resolving this problem.
Here is the code:
package facebook;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import ...
0
Write a IntentService. Inside it, just start a new Thread. In the Thread.run(), put an infinite while loop to call your notification code and Thread.sleep(15 * 60 * 1000)....
1
Please check the actual text for the link once again. It's not working may be there can be spaces or may be upper case , lower case in the text.
You can also try,
@FindBy(linkText = “Logout”)
Partial Link Text
@FindBy(partialLinkText = “Logout”)
0
This is how I'm setting it:
connector.CellsU["ShapeRouteStyle"].ResultIUForce = (double)Visio.VisCellVals.visLORouteCenterToCenter; // or .visLORouteRightAngle
I guess you could read it this way:
var lineStyle = shape.CellsU["ShapeRouteStyle"].FormulaU;
See http://office.microsoft.com/en-us/visio-help/HV080950301.aspx.
3
You might want to consider something like this:
Intent intent = new Intent(this, MyService.class);
PendingIntent pintent = PendingIntent.getService(this, 0, intent, 0);
AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
// Start every 30 seconds
alarm.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), 30*1000, pintent);
...
1
The answer depends on what InstallShield project type you are using. I highly suggest Basic MSI. InstallScript custom actions are OK but don't use an InstallScript or InstallScript MSI project type.
Assuming the above, you create Secure Custom Public Properties so they can be passed at the command line. You also create custom dialogs so that the values ...
1
What you need is called Silent mode. Check your installation system's manual for this keyword.
Many installation systems support it - I can recommend you to use NSIS (/SILENT parameter) or Inno Setup (/SILENT, /VERYSILENT) if you did not started with creating your setup yet.
These are free (open source) installation systems and they are really powerful.
...
3
This is simple if you only use Selenium WebDriver, and forget the usage of Selenium-RC. I'd go like this.
WebDriver driver = new FirefoxDriver();
WebElement email = driver.findElement(By.id("email"));
email.sendKeys("your@email.here");
The reason for NullPointerException however is that your variable driver has never been started, you start FirefoxDriver ...
4
You should replace WebDriver wb = new FirefoxDriver(); with driver = new FirefoxDriver(); in your @Before Annotation.
As you are accessing driver object with null or you can make wb reference variable as global variable.
1
the problem in your attempt is the parameter /generic.
According to the official website for cmdkey, /generic
identifies the computer or domain name that this entry will be associated with.
In my example, I will call the computer Computer01.
Do you want the credentials associated with TERMSRV/Computer01 ? (Like your example ...
1
Simple PDF Automation to read text from PDF document.
0
I'm trying to do the same thig right now. This tutorial is listed on Frank's site, but I've been having problems with it, as I haven't had a lot of experience with terminal. You probably have already found out something on it, but this might help someone else.
0
RIATest is not using Python but otherwise fits the bill. It is like Selenium but for Win32 and web.
RIATest uses Windows UI Automation API and can drive any Windows application that exposes its GUI to UI Automation properly (that includes all native and .NET apps).
Disclaimer: I work for Cogitek, the RIATest company.
0
I disagree with Bob, Bill and the author of the article that is linked to in the other answer.
Downloads can be automated. The downloaded file can be meaningfully verified. In simplest case you can compare the contents of downloaded file with an existing exemplary file.
(Disclaimer: the next paragraph is about a tool which I am affiliated with).
For ...
Top 50 recent answers are included










