Сравнение версий

Ключ

  • Эта строка добавлена.
  • Эта строка удалена.
  • Изменено форматирование.
  1. Choose the action
  2. «Open Browser»
  3. "Open browser" from the
  4. «Browser»
  5. "Browser" action group.

  6. Image Modified
  7. Select
  8. «Chrome»
  9. "Chrome" in the action parameters under the
  10. «Browser»
  11. "Browser" field.

  12. Image Modified
  13. Specify the descriptive list of browser properties and their values that will be set at startup, in the
  14. «Properties»
  15. "Properties" field, in JSON format.
  16. C:\\Users\\<User>\\AppData\\Local\\Google\\Chrome\\User Data - is the path to your browser profile.
  17.      
  18. 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).Image Modified
    Template:

    {


  19.      
  20. "acceptInsecureCerts":true,


  21.      
  22. "browserName":"chrome",


  23.      
  24. "goog:loggingPrefs": {


  25. "browser": "ALL"


  26.    
  27. },

  28. "timeouts":

  29. {
  30.  

  31.  
  32. {"implicit":0,


  33.    
  34. "pageLoad": 30000,


  35.    
  36. "script": 30000


  37. },


  38. "unhandledPromptBehavior":"dismiss",


  39.  "goog:chromeOptions": {


  40.    
  41. "args": [


  42.    
  43.  "disable-popup-blocking",


  44.      
  45. "disable-notifications",


  46.      
  47. "no-sandbox",


  48.      
  49. "disable-infobars",


  50.      
  51. "disable-extensions",


  52.      
  53. "disable-gpu",


  54.      
  55. "start-maximized",


  56.      
  57. "user-data-dir=C:\\Users\\

  58. <User>
  59. User>\\AppData\\Local\\Google\\Chrome\\User Data",


  60.      
  61. "profile-directory=Default"


  62. ],


  63.  
  64. "extensions":[]


  65.  
  66. }


  67. }

    Example of filling in the fields:


  68. Image Modified

  69. Run the robot. The browser will open with the specified profile.