2. using JUnit Runner in eclipse: a. start Selenium Server: java -jar selenium-server.jar -port 4447 b. run Selenium Unit Test in eclipse using JUnit Runner
required selenium distribution: selenium-remote-control-1.0-beta-2-dist.zip and can be downloaded from http://seleniumhq.org/download/
just developed a tool for checking out svn artifacts using the svn + ssh, and had to bypass the password prompt. to enable this, execute the following commands in the remote server:
$ ssh-keygen -t rsa1
(accept paraphraseless input)
$ ssh-keygen -t rsa
(accept paraphraseless input)
$ ssh-keygen -t dsa
(accept paraphraseless input)
add identity.pub to authorized_keys
$ cat identity.pub >> authorized_keys
add id_dsa.pub to authorized_keys2
$ cat id_dsa.pub >> authorized_keys2
some svn pointers,
checkout: svn co
checkout with revision arg: svn co -r HEAD
checkout with user credentials: --username --password
take note:
in linux, for passwords with escape characters, enclose the password with double quotes and add a \ prefix to the special character (i.e., "ohmy\!password")