Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge branch 'develop' of https://github.com/pete-otaqui/Mink into pe…
Browse files Browse the repository at this point in the history
…te-otaqui-develop
  • Loading branch information
everzet committed Dec 21, 2011
2 parents 0aa1bbd + d3fe6b4 commit 4db381a
Show file tree
Hide file tree
Showing 7 changed files with 872 additions and 0 deletions.
7 changes: 7 additions & 0 deletions bin/install_webdriver
@@ -0,0 +1,7 @@
#!/bin/sh

BASEDIR=$(dirname $0)
cd $BASEDIR/../vendor

wget https://github.com/facebook/php-webdriver/zipball/master -O webdriver.zip
wget http://selenium.googlecode.com/files/selenium-server-standalone-2.15.0.jar -O webdriver.jar
3 changes: 3 additions & 0 deletions bin/kill_webdriver
@@ -0,0 +1,3 @@
#!/bin/sh

ps -ef|grep webdriver|grep -v grep|awk '{print $2}'|xargs kill -9
4 changes: 4 additions & 0 deletions bin/run_all_tests
Expand Up @@ -4,8 +4,12 @@ bin/kill_sahi
bin/start_sahi
bin/kill_selenium
bin/start_selenium
# don't need to start "webdriver" since selenium will do the job!
#bin/start_webdriver

phpunit

bin/kill_selenium
bin/kill_sahi
# don't need to start "webdriver" since selenium will do the job!
#bin/kill_webdriver
7 changes: 7 additions & 0 deletions bin/start_webdriver
@@ -0,0 +1,7 @@
#!/bin/sh

BASEDIR=$(dirname $0)
cd $BASEDIR/../vendor

java -jar webdriver.jar > /dev/null &
sleep 5
67 changes: 67 additions & 0 deletions src/Behat/Mink/Driver/Selenium2/syn.js

Large diffs are not rendered by default.

0 comments on commit 4db381a

Please sign in to comment.