Your first test #
With the CLI installed, let’s run a browser test just to see that things are working:
bombadil browser test https://en.wikipedia.org --output-path my-testThis will run until you shut it down using
Ctrl+C. Any property violations will be
logged as errors, and with the --output-path option
you will get results to inspect afterwards.
Launch the Bombadil Inspect tool to see what happened in the test you just ran:
bombadil browser inspect my-testThis will open a web application in your browser, which has some features to highlight:
- This interface is focused on state transitions, i.e. the state before and after each action.
- On the left is the actions list, which you can use to navigate the state transitions by clicking the actions.
- In the bottom you’ll see the timeline, which you can scrub (click and drag) with your mouse. The timeline also shows the currently selected state transition.
- If there were any violations found in the test, they’ll be shown as exclamation mark icons in the timeline.
No violations? That’s fine, Wikipedia is pretty solid! This confirms that Bombadil runs and produces results.