我想让grunt-autoshot为我的项目截屏,但似乎有一个小问题我找不到。我以不同的方式重新配置了grunt.initConfig命令,但似乎无法使其正常工作。这都是本地托管的,服务器正在正确加载,当grunt 服务器打开时我可以看到我的示例文件('index.html')。以下是我现在根据示例页面使用的内容
错误:'致命错误:无法调用未定义的方法'createPage'
autoshot: {
default_options: {
options: {
// necessary config
path: 'screenshots/',
local: {
path: './test',
port: 9000,
files: [{
src: 'index.html',
dest: 'index.jpg'
}]
},
viewport: [
'320x480', '480x320', '384x640', '640x384', '602x963', '963x602', '600x960', '960x600', '800x1280', '1280x800', '768x1024', '1024x768'
]
},
},
},