This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Download and open Selenium RC from seleniumhq.org | |
* Download and install phpsh from phpsh.org | |
[terminal-1$ sudo ln -s /home/ubuntu/Apps/phpsh/phpsh /usr/local/bin/phpsh | |
* Start Selenium RC Server (in a new terminal window) | |
[terminal-2]$ cd /home/ubuntu/Apps/selenium-remote-control-1.0-beta-2/ | |
[terminal-2]$ cd selenium-server-1.0-beta-2/ | |
[terminal-2]$ java -jar selenium-server.jar | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
package gitsh; | |
use strict; | |
use warnings; | |
use base qw(Term::Shell); | |
use constant PRE_VCS => "git"; | |
use constant PRE_MAN => "man"; |