DevWeb Proxy Recorder

The DevWeb Proxy Recorder enables you to record your business process from your chosen browser and export it to a HAR file. You can then generate a DevWeb script from the HAR file using the DevWeb Offline Script Generator tool.

The instructions here are for using the Proxy Recorder with LoadRunner Developer. The Proxy Recorder is also supported in VuGen.

Generate and install a unique CA certificate

Available in version 2021 R1:

The unique CA certificate DevWebCertDoNotTrust, described in this section, is supported from version 2021 R1.

If you are using the default CA certificate supplied with earlier versions, we recommend that you replace it with the unique CA certificate.

To securely record HTTPS traffic, a Certification Authority (CA) certificate must be installed before using the DevWeb Proxy Recorder for the first time. The certificate is installed into your certificate repository on the Proxy Recorder machine, as a Trusted Root Certificate.

The Proxy Recorder can automatically generate and import a unique DevWeb CA certificate, called DevWebCertDoNotTrust. Alternatively, you can generate and import it using the DevWebUtils executable, without activating the Proxy Recorder.

You need to generate and import the certificate once, on each machine that LoadRunner Developer is installed on. The imported certificate is then valid for one year.

When the certificate is generated, the cert directory is added to the DevWeb root folder (if it doesn't exist already), containing the following certificate and CA PEM files:

  • devweb_cert.cer

  • mitmproxy-ca.pem

  • mitmproxy-dhparam.pem (this file is created by mitmproxy and might not be included in the folder)

Limitations for import:

  • Administrator privileges are required to install to the trusted root. Import will fail if you do not have administrator privileges.

  • The automatic generation works on all platforms, but automatic import is supported only on Windows. For Linux and macOS, you need to install the certificate manually.

For details on installing manually, see Manually install a CA certificate.

To generate and install a unique CA certificate using the Proxy Recorder:

  1. In the local.recorder_config.yml, set provide_certificate to true. (By default, it is set to false.)

    Tip: For details on creating the local.recorder_config.yml, see Custom configuration for the Proxy Recorder.

  2. Run the Proxy Recorder from a terminal window (for details, see Run the DevWeb Proxy Recorder). The Proxy Recorder checks the <DevWeb root folder>\cert folder and the trusted root to see if a CA certificate already exists:

    • If the cert folder already contains an existing CA certificate and the CA PEM file, then a new certificate is not generated.

    • If a CA certificate does not already exist, the Proxy Recorder generates a new certificate under the cert folder.

  3. The Proxy Recorder then tries to import the devweb_cert.cer certificate to the trusted root. This can be the newly generated certificate, or the existing certificate described above:

    • Existing certificate. If the existing certificate is not already installed in the trusted root, then the Proxy Recorder will try to import it.

    • Newly generated certificate.The Proxy Recorder will try to import the certificate, even if there is already a certificate with the same name in the trusted root.

  4. After successful installation of the CA certificate, the Proxy Recorder launch continues, and you can begin recording.

To generate and install a unique CA certificate via DevWebUtils executable:

  1. To generate the certificate, from a terminal window change to the <DevWeb root> directory and run the following:

    DevWebUtils.exe -mode=genCert -certPath=<output_dir_path>

    The flag -certPath is optional. If it is not provided, the default is <DevWeb root folder>\cert.

  2. To import the certificate, make sure the terminal window is open with administrator privileges. Run the following:

    DevWebUtils.exe -mode=importCert -certPath=<path to .cer file>

    The flag -certPath is optional. If it is not provided, the default is <DevWeb root folder>\cert\devweb_cert.cer

Back to top

Install the default CA certificate

Available in version 2021:

The DevWeb default CA certificate, described in this section, is supported up to version 2021.

For versions later than 2021, you should follow the instructions in Generate and install a unique CA certificate .

 

To record HTTPS traffic, a Certification Authority (CA) certificate must be installed before using the DevWeb Proxy Recorder for the first time. You install the certificate into your certificate repository on the Proxy Recorder machine, as a Trusted Root Certificate.

You can use the default DevWeb CA certificate supplied with the Proxy Recorder (with version 2021). You can install the certificate directly from the command line, as described below. Alternatively, it can be manually installed using the Certificate Import Wizard (for details, see Manually install a CA certificate).

Note: You can also use your own custom certificate. For details, see Create custom self-signed certificate.

To install the default certificate on Windows from the CLI:

From a terminal window (open with administrator privileges), change to the <DevWeb root> directory and run the following:

certutil.exe -f -p "" -importpfx Root ./cert/default_devweb_cert/default_devweb_cert.pfx

Alternatively, if you have configured the environment variable DEVWEB_PATH, you can open a terminal window with administrator privileges from any location and run:

certutil.exe -f -p "" -importpfx Root "%DEVWEB_PATH%/cert/default_devweb_cert/default_devweb_cert.pfx"

Back to top

Manually install a CA certificate

You can manually install the CA certificate, if automatic or CLI installation is unavailable. Administrator permissions are required to install to the trusted root.

To install the CA certificate on Windows using the Import Wizard:

  1. In File Explorer, browse to the certificate file and double-click it:

    • Version 2021 R1: <DevWeb root folder>\cert\devweb_cert.cer

    • Version 2021: <DevWeb root folder>\cert\default_devweb_cert\default_devweb_cert.pfx

  2. The Certificate Import Wizard opens. Follow the on-screen instructions.
  3. If installing a PFX file, on the Private key protection page, leave empty the Password field for the private key. 
  4. On the Certificate Store page:

    • Select Place all certificates in the following store and click Browse.
    • In the Select Certificate Store dialog box, select Show physical stores, then browse to Trusted Root Certification Authorities > Registry.
    • Click OK.

  5. Complete the wizard to import the certificate.

To install the CA certificate on MacOS:

  • Version 2021 R1: From a terminal window (open with administrator privileges), change to the <DevWeb root>/cert directory and run the following:

    sudo security add-trusted-cert –d –r trustRoot –k /Library/Keychains/System.keychain cert/devweb_cert.cer

  • Version 2021: From a terminal window (open with administrator privileges), change to the <DevWeb root>/cert/default_devweb_cert directory and run the following:

    sudo security add-trusted-cert –d –r trustRoot –k /Library/Keychains/System.keychain cert/default_devweb_cert/default_devweb_cert.cer

Back to top

Create custom self-signed certificate

Available in version 2021: The information in this section is supported up to version 2021.

 

You can create your own custom self-signed certificate, rather than use the one provided by DevWeb.

The following provides instructions for Windows OS. For Linux or MacOS, use the appropriate OpenSSL commands.

To create a custom certificate:

  1. Download and install the latest version of OpenSSL. For example, for Windows, you can download from https://slproweb.com/products/Win32OpenSSL.html.
  2. Open the <DevWeb root folder>\cert\openssl.conf file. Under the Directory and file locations section, edit the dir field to point to the directory that will hold the created certificates. For example, you could use the custom_cert folder included under <DevWeb root folder>\cert.
  3. Open a terminal window (on Windows, open with administrator privileges), and change to the directory where you will store the created certificates.
  4. Run the commands to create the files. The following examples use custom as the certificate name—replace with your own label, as relevant:

    • Create key and certificate files:

      openssl req -config openssl.conf -new -x509 -sha256 -newkey rsa:2048 -nodes -days 3650 -keyout custom.key -out custom.cert

    • Create a PFX file that combines both cert and key:

      pkcs12 -nodes -export -in custom.cert -inkey custom.key -out custom.pfx

    • Create the CA PEM file for the proxy (this must be named mitmproxy-ca.pem):

      openssl pkcs12 -nodes -in custom.pfx -out mitmproxy-ca.pem -clcerts

  5. Install the certificate on the Proxy Recorder machine, as a Trusted Root Certificate:

    certutil.exe -importpfx Root custom.pfx

  6. In your local.recorder_config.yml, add the path to the folder to the custom_ca_certificate field. For example, <DevWeb root>\cert\custom_cert. For more information on using the local.recorder_config.yml file, see Custom configuration for the Proxy Recorder.

Back to top

Run the DevWeb Proxy Recorder

The Proxy Recorder is ready to use, using default configuration settings.

If you want to customize the configuration settings, for example, to use your own CA certificate, different proxy server settings, or to set remote usage, then these should first be defined in the configuration file. For details, see Custom configuration for the Proxy Recorder.

To run the Proxy Recorder:

  1. From your chosen browser, configure the proxy server settings for your internet connection. Set the host address and port to the ones used in the configuration file. The default values are:

    • Default host: localhost
    • Default port: 8156

    The proxy must be set to be used for all addresses. For example, in Internet Explorer, make sure that Bypass proxy server for local addresses is not selected.

  2. Open a terminal window and change to the DevWeb directory.

  3. Start the Proxy Recorder by running one of the following from the command line, including a name for the HAR file where the recorded traffic will be saved (this is when using the default configuration file):

    •  ProxyRecorder.exe <har result file name>

    If you are using a custom configuration file, run the following:

    • ProxyRecorder.exe -c <path to local.recorder_config.yml> <har result file name>

    The Proxy Recorder window opens.

  4. Perform your business flow in your web browser. Make sure to:

    • Open a new instance of the browser before each run.

    • Work in private browsing mode (for example, Incognito Mode in Chrome).

  5. In the Proxy Recorder window, click Enter to finish recording and create the HAR file.

    Log information for the recording is available in the console and in a log file (according to the configuration file settings.)

    Note: Make sure that the process is complete before using the HAR file.

  6. Use the DevWeb Offline Script Generator tool to generate a DevWeb script from the HAR file.

Back to top

Custom configuration for the Proxy Recorder

The DevWeb Proxy Recorder configuration is contained in the <DevWeb root>\recorder_config.yml file. This file contains the default configurations needed to run the Proxy Recorder and must not be modified.

If you want to customize any configuration setting, you should do so in the local.recorder_config.yml file, located in the same folder. If this file does not exist, copy the config.yml file and name it local.recorder_config.yml. The settings in this file will override the default settings in config.yml.

For example, you may need to customize settings for the following:

Logger settings

Logging information for each Proxy Recorder run is saved to a log file and displayed in the console. You can change the default settings and log level.

CA certificate

  • If you are using a custom CA certificate instead of the default one, add the path for the certificate folder to the custom_ca_certificate field. For details, see Create custom self-signed certificate.

Client-side certificate

For HTTPS requests that require a certificate, you can specify the path to the client-side certificate and key file in the client_certs field. The file must be in PEM format, and should contain both the unencrypted private key and the certificate.

HTTP/2 supportBy default, HTTP/2 support is enabled, and PRIORITY forwarding for HTTP/2 connections is disabled.
Proxy hostBy default, the Proxy Recorder listens for connections on localhost. To use a different host, customize the proxy_host field.
Remote usage or proxy recordingTo enable remote usage of the Proxy Recorder instance, set the allow_remote setting to true.
Proxy settings for recording

The proxy settings you can define include the following:

  • Proxy server details and credentials for proxy server authentication.
  • PAC (Proxy Auto-Configuration) support, and the URL for the PAC configuration file.
  • Authentication type to use: none, basic, or NTLM ("ntlm")
  • Hosts to exclude when using the proxy.
Automatic browser launch

If you want the Chrome or Chromium browser to launch automatically when you start the Proxy Recorder, define it in launchBrowser.

Note:  

  • Chromium: This should also be added to the PATH environment variable.
  • Safari: Automatic launch is supported for macOS. To use this option, you must manually configure the proxy settings in the browser, and record in private browsing mode with caching disabled.

Back to top

Known issues

The Chrome browser cannot be launched when recording scripts on Linux under a root user session and using the launchBrowser argument. Chrome does not support this configuration.

Workaround: Log in as a different user, or manually launch the browser.

Back to top

See also: