Commit 077bc3e9 077bc3e988eafc42207ee582b187708c898b3ee0 by Mickaël Andrieu

Merge pull request #723 from sscotth/patch-1

Update README.md
2 parents c878b2b3 bc193039
...@@ -46,7 +46,7 @@ Sample test to see if some dropdown can be opened: ...@@ -46,7 +46,7 @@ Sample test to see if some dropdown can be opened:
46 46
47 ```javascript 47 ```javascript
48 casper.test.begin('a twitter bootstrap dropdown can be opened', 2, function(test) { 48 casper.test.begin('a twitter bootstrap dropdown can be opened', 2, function(test) {
49 casper.start('http://twitter.github.com/bootstrap/javascript.html#dropdowns', function() { 49 casper.start('http://getbootstrap.com/2.3.2/javascript.html#dropdowns', function() {
50 test.assertExists('#navbar-example'); 50 test.assertExists('#navbar-example');
51 this.click('#dropdowns .nav-pills .dropdown:last-of-type a.dropdown-toggle'); 51 this.click('#dropdowns .nav-pills .dropdown:last-of-type a.dropdown-toggle');
52 this.waitUntilVisible('#dropdowns .nav-pills .open', function() { 52 this.waitUntilVisible('#dropdowns .nav-pills .open', function() {
......