Tag Info

Hot answers tagged

4

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 => ...


3

You don't actually need GUI automation here. To specify the computer to connect to, simply launch mstsc with the /v command-line argument, for example: CreateObject("WScript.Shell").Run "mstsc /v:computername" Alternatively, if you have an .rdp file containing the computer name and the connection settings, you can launch this file using mstsc: ...


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.


2

I know that with the system and fs modules, you are able to use the same APIs as you would with CasperJS as you would with PhantomJS. This is most likely true for webserver and child_process as well. What I mean by this, is that you can continue to require these modules as you would with PhantomJS, ex: var fs = require('fs'); var sys = require('system'); ...


1

The faker module offers some functionality to populate several different types of data: import faker f = faker.Faker() In [11]: f. f.city f.full_address f.phonenumber f.zip_code f.company f.last_name f.state f.email f.lorem f.street_address f.first_name f.name f.username In [11]: f.city() ...


1

If you just need the string Test ticket,1 ... it is from random import randint randomString = "Test ticket, " + randint(min,max) If you want to generate random strings you could use ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(max)) You also might want to think about preventing strings to be equal. In that ...


1

I stumbled across this question and was very suprised that no one has mentioned Vagrant yet. As Pete TerMaat and others have mentioned, virtualization is a great way to manage and automate development environments. Vagrant basically takes the pain away from setting up these virtual boxes. Within minutes you can have a completely fresh copy of your ...


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 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 ...



Only top voted, non community-wiki answers of a minimum length are eligible