Browsermob

Component ID

1345242

Component name

Browsermob

Component type

module

Maintenance status

Development status

Component security advisory coverage

not-covered

Downloads

495

Component created

Component changed

Component body

Some drush commands to help with browsermob scripts.

Currently, the only command provided prints javascript that you can paste at the top of your browsermob scripts to use a random set of users like so:

/var/www/drupal $ drush browsermob-users -y 4 --password="1234"
You are about to reset passwords to 1234. Do you want to continue? (y/n): y

var drupalAccounts = ["panodr","drokosibipig","ticespispi","misaslobetr","swupra"];
var drupalUser = drupalAccounts[Math.floor(Math.random() * drupalAccounts.length)];
var drupalPass = '1234';