我正在深入研究功能测试并尝试执行一些简单的任务。该应用程序是用 ReactJS 构建的,我决定使用 Phantom/Casper。问题是即使是最基本的任务也会失败。
简而言之,是否有使用 Phantom/Casper 测试 React 应用程序的技巧?
我已经安装了 Phantom (v.2.1.1) 和 Casper (v1.1.0-beta5)。作为第一次尝试,我创建了一个简单的脚本来捕获图像:
捕获.js
var casper = require('casper').create({
viewportSize: {
width: 1024,
height: 768
},
verbose: true,
logLevel: "debug"
});
casper.start('http://localhost:9494', function() {
console.log("page loaded");
});
casper.then(function() {
this.capture('img.png');
});
});
casper.run();
然后运行脚本:
> casperjs capture.js
localhost:9494
在我的浏览器中查看会按原样调出应用程序。但生成的capture()
图像是一个空白屏幕。
我也尝试添加wait()
,waitForSelector()
并waitForResource()
无济于事。
这是控制台中的输出:
[info] [phantom] Starting...
[info] [phantom] Running suite: 2 steps
[debug] [phantom] opening url: http://localhost:9494/, HTTP GET
[debug] [phantom] Navigation requested: url=http://localhost:9494/, type=Other, willNavigate=true, isMainFrame=true
[debug] [phantom] url changed to "http://localhost:9494/"
[debug] [phantom] Successfully injected Casper client-side utilities
[info] [phantom] Step anonymous 2/2 http://localhost:9494/ (HTTP 200) page loaded
[debug] [phantom] Capturing page to /path/to/img.png
[info] [phantom] Capture saved to /path/to/img.png
[info] [phantom] Step anonymous 2/2: done in 848ms.
[info] [phantom] Done 2 steps in 848ms
[debug] [phantom] Navigation requested: url=about:blank, type=Other, willNavigate=true, isMainFrame=true
[debug] [phantom] url changed to "about:blank"