Closed atilacamurca closed 7 years ago
What specific documentation do you feel is lacking?
The way you use this project is nothing like nightwatch. You use a webdriver client, e.g. Night Watch.
Install taxi-rank with:
npm install -g taxi-rank
Then in a separate terminal to where you are running your webdriver client, run:
taxi-rank
For Nightwatch, you can just set your selenium_port to 9516
.
You can also use cabbiejs by simply using:
import cabbie from 'cabbie-sync';
const driver = cabbie('taxirank', {debug: true});
// use the driver here
The API for the cabbie driver is at https://cabbiejs.org/api/classes/driver/
I haven't documented the API for the client, since you can use your client of choice.
Any plans for a API documentation?
Based on what I already use, NightWatch, it would be great to see something like their API reference (http://nightwatchjs.org/api), describing the methods and giving some examples.