HOME / SUPPORT / Create LSR files manually

Create LSR files manually

This document describes how to create .lsr files in Acunetix manually. For an overview of the LSR functionality, refer to the linked documentation.

Creating LSR files manually involves these five simple steps:

Step 1: Navigate to the target application

  • Open Google Chrome and navigate to the login page of your target application.
  • Copy the URL of the login page as it will be used in the LSR file.

Step 2: Click to open the Login form (If necessary)

  • If the login form is behind a button or a menu (e.g., a "Sign In" link on the homepage), locate the button.
  • Right-click the button, select Inspect, then copy the XPath or CSS selector.

Step 3: Identify Login elements using Chrome DevTools

  • Right-click on the username input field and select Inspect.
  • Locate the XPath or CSS selector of the input field.
  • Right-click the highlighted HTML element, hover over Copy, and select Copy XPath or Copy Selector.
  • Repeat this process for the password field and login button.
  • If the login process includes additional steps (e.g., OTP input), capture those elements as well.

Step 4: Construct the JSON File

  • Using a text editor, create a new file and structure it as follows:

{

    "actions": [

        {

            "parameters": {

                "friendly": "http://yourdomain.com"

            },

            "target": "http://yourdomain.com",

            "timeout": 22000,

            "type": "navigate"

        },

        {

            "parameters": {

                "friendly": "A with text \"Your profile\"",

                "alt_targets": [

                    {

                        "type": "xpath",

                        "value": "//a[@href='userinfo.php' and contains(text(), 'Your profile')]"

                    },

                    {

                        "type": "css",

                        "value": "#sectionLinks > ul > li:nth-child(5) > a"

                    }

                ]

            },

            "target": "//a[@href='userinfo.php' and contains(text(), 'Your profile')]",

            "timeout": 20000,

            "type": "click"

        },

        {

            "parameters": {

                "value": "test",

                "friendly": "INPUT named uname",

                "alt_targets": [

                    {

                        "type": "xpath",

                        "value": "//input[@name='uname' and @type='text']"

                    },

                    {

                        "type": "css",

                        "value": "#content > div:nth-child(1) > form > table > tbody > input[type=\"text\"]"

                    }

                ]

            },

            "target": "//input[@name='uname' and @type='text']",

            "timeout": 20000,

            "type": "change"

        },

        {

            "parameters": {

                "value": "test",

                "friendly": "INPUT named pass",

                "password": true,

                "alt_targets": [

                    {

                        "type": "xpath",

                        "value": "//input[@name='pass' and @type='password']"

                    },

                    {

                        "type": "css",

                        "value": "#content > divinput[type=\"password\"]"

                    }

                ]

            },

            "target": "//input[@name='pass' and @type='password']",

            "timeout": 20000,

            "type": "change"

        },

        {

            "parameters": {

                "friendly": "login",

                "alt_targets": [

                    {

                        "type": "xpath",

                        "value": "//input[@type='submit' and @value='login']"

                    },

                    {

                        "type": "css",

                        "value": "#content > input[type=\"submit\"]"

                    }

                ]

            },

            "target": "//input[@type='submit' and @value='login']",

            "timeout": 20000,

            "type": "click"

        }

    ],

    "detection": {

        "type": "statusis",

        "pattern": "200",

        "request": "GET http://yourdomain.com/userinfo.php HTTP/1.1\n\n",

        "headers": []

    },

    "restrictions": [

        "GET http://yourdomain.com/logout.php HTTP/1.1"

    ],

    "config": {

        "viewport": {

            "width": 688,

            "height": 612,

            "screenWidth": 2560,

            "screenHeight": 1440

        },

        "restrictedElements": [

            {

                "path": "//a[@href='logout.php']",

                "source": "auto",

                "ref": "GET http://yourdomain.com/logout.php HTTP/1.1"

            }

        ]

    }

}

Step 5: Save and upload the JSON File

  • Save the file with a .lsr extension (e.g., my_login.lsr).
  • Upload the file to Acunetix via the Login Sequence Recorder settings.

Additional Configuration Options

  • Timeouts: Adjust timeout values to prevent premature failures.
  • Viewports: Define viewport sizes to simulate different screen resolutions.