Warning, the benchmark support is still pretty rough, though feedback is very much appreciated.
Yes, There are 2 ways to do it depending on if you want a bunch of different scripts (1) or the same script applied to a bunch of different URLs (2).
The URL list can contain scripts or urls for each entry. It’s a bit convoluted because the script needs to fit on one line in the url list so you need to use \t for the tab separators and \n for the line separators. i.e.:
You can pass a script as a test option. The scripts support a couple of substitution markers so that you can use the same script with a bunch of URLs:
%URL% - gets replaced with the URL being tested
%HOST% - gets replaced with the host name of the URL being tested
A script can look like:
setDns %HOST% 1.2.3.4
navigate %URL%
Then any URL tested will have it’s host name redirected to 1.2.3.4 before navigating to the test page.
You can’t, it has to be done as 3 separate tests, each one only logging data for one of the steps.
It’s mostly a UI/processing issue with being able to present multiple steps in a single test (pull requests that hack away at the problem without breaking the existing behavior are welcome).