在Zombie.js的the example中,代码如下:
const Browser = require('zombie');
// ...
const browser = new Browser();
// ...
browser
.fill('email', 'zombie@underworld.dead')
.fill('password', 'eat-the-living')
.pressButton('Sign Me Up!', done);
我没有在其文档中找到 fill , pressButton ,所以我不知道它有哪些API,最后我通过阅读解决了我需要的东西它的源代码。
我的问题是:我怎么知道它的API? 它没有列出它们,因为这些方法来自另一个模块?如果是这样,模块是什么?或者他们是如此常见/明显,所以需要文档?