| 1234567891011121314151617181920 |
- var brower = require('casper').create({
- pageSettings : {
- webSecurityEnabled : false
- },
- logLevel : "debug",// 日志等级
- verbose : true, // 记录日志到控制台
- onWaitTimeout : function() {
- this.echo('** Wait-TimeOut **');
- },
- onStepTimeout : function() {
- this.echo('** Step-TimeOut **');
- }
- });
- brower.start('http://www.mouser.cn/Mobile/', function() {
- this.echo(this.getTitle());
- this.capture('mouser.png');
- });
- brower.run();
|