Skip to content

Instantly share code, notes, and snippets.

@selftaught
Created October 1, 2015 22:12
Show Gist options
  • Save selftaught/efd6d9775bba93ea58b1 to your computer and use it in GitHub Desktop.
Save selftaught/efd6d9775bba93ea58b1 to your computer and use it in GitHub Desktop.
browser.addCommand('get_sessid_from_url', function() {
var sess_id;
browser.url(function(err, res) {
sess_id = url.value.match(/^https:\/\/(\d+)\./)[1];
});
return sess_id;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment