phpfunk.com


Archive for May, 2011

burn cd images from the command line

Friday, May 27th, 2011

To burn cd images from the command line in Debian squeeze you need two packages: (1) genisoimage (2) wodim To make an ISO image of a directory simply type: genisoimage -o outfile_name some_directory To burn the image use wodim. First figure out which optical drive to use by asking wodim for a list: tom@osmium:~$ wodim [...]

make selenium ide pause

Monday, May 16th, 2011

Selenium IDE is a great integration testing tool. It has a built in function pause(msec) where msec is the number of milliseconds you want Selenium to pause for. In my situation Selenium does not pause (IceWeasel version 3.5.16, Selenium IDE 1.0.10). I tried pause(3000) and it did not seem to work. I tried pause(30000) and [...]