Skip to main content

Invicti Standard – Form Authentication API

This document is for:
Invicti Standard

This document contains form authentication helper methods.

For further information, see Configuring Form Authentication in Invicti Standard.

Methods

click(el, delay opt)

This method simulates a click for the specified el.

Parameters

This table lists and explains the method's parameters.

NameTypeAttributesDescription
elstring | HTMLElementThis is the element to click.
delaynumber<optional>This is the number of milliseconds (thousandths of a second) by which the click should be delayed. Note that all delays are timed from the beginning of the script execution and do not work in sequence if there are several function calls with delays.

Example

// Click element by id
invici.auth.click('LoginButton');
// Click element by id after 2 seconds
invicti.auth.click('LoginButton', 2000);
// Click element by DOM element reference
invicti.auth.click(document.getElementsByTagName('BUTTON')[0]);

clickByQuery(query, delay opt)

This method simulates a click for the element specified by the CSS query.

Parameters

This table lists and explains the method's parameters.

NameTypeAttributesDescription
querystringThis is the CSS query that locates the element.
delaynumber<optional>This is the number of milliseconds (thousandths of a second) by which the click should be delayed. Note that all delays are timed from the beginning of the script execution and do not work in sequence if there are several function calls with delays.

Example

// Click element by using a complex CSS query
invicti.auth.clickByQuery('#loginForm > div:nth-child(2) > button');
// Click element by id
invicti.auth.clickByQuery('#LoginButton');
// Click element by id after 2 seconds
invicti.auth.clickByQuery('#LoginButton', 2000);

executeInFrame(frameEl, code, delayopt)

This method executes the supplied code in the specified frame element.

Parameters

This table lists and explains the method's parameters.

NameTypeAttributesDescription
frameElstring | HTMLElementThis is the frame element id or DOM reference to execute code.
codestringThis is the code to execute.
delaynumber<optional>This is the number of milliseconds (thousandths of a second) by which the code execution should be delayed. Note that all delays are timed from the beginning of the script execution and do not work in sequence if there are several function calls with delays.

Example

// Clicks an element inside a frame
var frame = document.getElementsByTagName('IFRAME')[1];
invicti.auth.executeInFrame(frame, 'invicti.auth.click("LoginButton");');

log(message)

This method logs a message.

Parameters

This table lists and explains the method's parameters.

NameTypeDescription
messagestringThe message.

Example

// Log a simple message
invicti.auth.log('Hello world!');

login(usernameopt, passwordopt, delayopt)

This method attempts to find a login form and completes the specified credentials.

Parameters

This table lists and explains the method's parameters.

NameTypeAttributesDescription
usernamestring<optional>This is the username to complete.
passwordstring<optional>This is the password to complete.
delaynumber<optional>This is the number of milliseconds (thousandths of a second) by which the login should be delayed. Note that all delays are timed from the beginning of the script execution and do not work in sequence if there are several function calls with delays.

Example

// Login using hard-coded values
invicti.auth.login('john.doe', 'p4ssw0rd');
// Login using hard-coded values after 2 seconds
invicti.auth.login('john.doe', 'p4ssw0rd', 2000);
// Login using implicit credentials (current persona)
invicti.auth.login();
// Login using implicit credentials (current persona) after 2 seconds
invicti.auth.login(2000);

setInputValue(el, value, delayopt)

This method sets the value of the specified el.

Parameters

This table lists and explains the method's parameters.

NameTypeAttributesDescription
elstring | HTMLElementThis is the element to click.
valuestringThis is the value to set.
delaynumber<optional>This is the number of milliseconds (thousandths of a second) by which this set value operation should be delayed. Note that all delays are timed from the beginning of the script execution and do not work in sequence if there are several function calls with delays.

Example

// Set value by id
invicti.auth.setInputValue('Username', 'john.doe');
// Set value after 2 seconds
invicti.auth.setInputValue('Username', 'john.doe', 2000);
// Set value by DOM element reference
invicti.auth.setInputValue(document.forms[0].elements[0], 'john.doe');

setValueByQuery(query, value, delayopt)

This method finds an input element using the CSS query and sets its value.

Parameters

This table lists and explains the method's parameters.

NameTypeAttributesDescription
querystringThis is the CSS query that locates the element.
valuestringThis is the value to set.
delaynumber<optional>This is the number of milliseconds (thousandths of a second) by which this set value operation should be delayed. Note that all delays are timed from the beginning of the script execution and do not work in sequence if there are several function calls with delays.

Example

// Query complex paths
invicti.auth.setValueByQuery('#loginForm > div:nth-child(2) > input', 'john.doe');
// Query by id
invicti.auth.setValueByQuery('#Username', 'john.doe');
// Set value after 2 seconds
invicti.auth.setValueByQuery('#Username', 'john.doe', 2000);

Need help?

Invicti Support team is ready to provide you with technical help. Go to Help Center

Was this page useful?