If I'm using MAMP, where should I install selenium server on a Mac?
I'm using a book to learn Yii, and it's telling me to install selenium server to do functional testing. Where is the best place to install this if I'm using Mac.
(Note, I'm a 开发者_Go百科newbie so explicit instructions are most appreciated.)
Also, would I have to alter the include Path or anything else?
For beginning you should use Selenium IDE for firefox. I recommend you play with it before starting advanced use of selenium. Thats all for beginning.
Once comfortable with IDE,You can download this standalone Selenium Server
and then run it with java -jar selenium-server-standalone-2.0b2.jar
It will run by default on localhost:4444.
You will need client driver for specific language you want to write your tests, if at all. You can get the drivers from here
精彩评论