1. Choose the action "Open browser" from the "Browser" action group.


  2. Select "Edge" in the action parameters under the "Browser" field.


  3. Specify the descriptive list of browser properties and their values that will be set at startup, in the "Properties" field, in JSON format.

  4. C:\\Users\\<User>\\AppData\\Local\\Microsoft\\Edge\\User Data - a browser profile path
  5. profile-directory - if there are several profiles in the browser, you can specify the required profile from which the robot will be launched (Default is specified by default). 
    Example:


    Template:

    {
          "acceptInsecureCerts": true,
          "browserName": "edge",
          "goog:loggingPrefs": {
          "browser": "ALL"
    },

        "timeouts": {
        "implicit": 0,
        "pageLoad": 30000,
        "script": 30000
    },
    "unhandledPromptBehavior": "dismiss",
    "goog:edgeOptions": {
        "args": [
          "disable-popup-blocking",
          "disable-notifications",
          "no-sandbox",
          "disable-infobars",
          "disable-extensions",
          "disable-gpu",
          "start-maximized",
          "user-data-dir=C:\\Users\\<USER>\\AppData\\Local\\Microsoft\\Edge\\User Data",
          "profile-directory=Default"
    ],
      "extensions": []
      }
    }


    Example of how to fill in the fields:



  6. Run the robot. The browser will open with the specified profile.
  • Нет меток