Application NamePerformance Matters Testing - webPass
PublisherPerformance Matters
Date Entered09/05/2014
Date Modified
webNetwork Version 6.2.1.170
Delivery MethodwebPass Client
ConfigurationForm Type : webAgent
Startup URL : https://ola.performancematters.com/ola/?IdP=&clientcode=school-code
Trigger URL : https://ola.performancematters.com/ola/\\?IdP=\\&clientcode=school-code
Script : var inputs = document.getElementsByTagName( "input" );
for( i=0; i < inputs.length; i++ ) {
var input = inputs[i];
if ( input ) {
if ( input.name ) {
if ( input.name == "login" ) {
input.value = "login username or lockbox";
}
else if (input.name == "password" ) {
input.value = "login username or lockbox";
}
}
}
}

var buttons = document.getElementsByTagName( "button" );
for( i=0; i < buttons.length; i++ ) {
var button = buttons[i];
if ( button ) {
if ( button.name ) {
if ( button.name == "Login" ) {
button.click();
}
}
}
}
 
Notes

Edit the school-code and put in your appropriate code.

Enter the username / password or lockbox value in the script.

Make a Standard URL : http://ola.performancematters.com/ola/?IdP=&clientcode=school-code
Be sure to use HTTP for the startup url, this will cause it to redirect to https in the proper order so we can catch the login page and submit.

This is webPass client side.