1. 08 Dec, 2012 3 commits
  2. 06 Dec, 2012 1 commit
    • PhantomJS 1.7 ships with support for child pages (say popups and frames). CasperJS can now wait for a child being opened and loaded to react accordingly using these two new methods:
      
      ```js
      casper.start('http://foo.bar/').then(function() {
          this.test.assertTitle('Main page title');
          this.clickLabel('Open me a popup');
      });
      
      casper.waitForPage(/popup\.html$/, function() {
          this.withChildPage(this.childPages[0], function() {
              this.test.assertTitle('Popup title');
          });
      });
      
      casper.then(function() {
          this.test.assertTitle('Main page title');
      });
      ```
      Nicolas Perriault authored
  3. 05 Dec, 2012 2 commits
  4. 03 Dec, 2012 2 commits
  5. 02 Dec, 2012 2 commits
  6. 01 Dec, 2012 1 commit
  7. 28 Nov, 2012 1 commit
  8. 24 Nov, 2012 1 commit
  9. 22 Nov, 2012 3 commits
  10. 21 Nov, 2012 1 commit
  11. 18 Nov, 2012 5 commits
  12. 14 Nov, 2012 1 commit
  13. 10 Nov, 2012 2 commits
  14. 05 Nov, 2012 3 commits
  15. 04 Nov, 2012 1 commit
  16. 02 Nov, 2012 2 commits
  17. 31 Oct, 2012 1 commit
  18. 27 Oct, 2012 4 commits
  19. 26 Oct, 2012 1 commit
  20. 25 Oct, 2012 1 commit
  21. 24 Oct, 2012 1 commit
  22. 23 Oct, 2012 1 commit