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

Ключ

  • Эта строка добавлена.
  • Эта строка удалена.
  • Изменено форматирование.

...

  1. Download the version of the driver for the corresponding browser.
  2. Place the downloaded driver in the file system, for example, in the root of drive C.
  3. Create a folder named «.robin» in the profile of the current user. In Windows, this is usually: «C:/Users/{current_user_name}».
    When creating the folder through the Windows interface, you may encounter an error: Требуется замена скриншота
     
    In case of an error, use «.robin.» (with a dot at the end) as the folder name instead of «.robin».
    The folder will be created with the name «.robin».
  4. In the folder, create the following file:
    env.cfg - configuration file for the robot and web-recorder (if you are using a platform version before 2.14.1, create two files: env.cfg and webSpyEnv.cfg).
    You can create these files using Notepad. 
  5. Full path to the configuration files: C:\Users\<User>\.robin
  6. When saving the file, specify the .cfg extension by selecting "All types (.)" in the "file type" saving window.
  7. Fill in the files in the following way:
    [webdrivers]
    webdriver.[browser_name].[browser_version].path=[absolute_driver_path], where [browser_name] is the type of browser from the list: * chrome * firefox * ie * yandex
    [browser_version] is the version of the downloaded browser driver, written as v**XX**, where XX is the numerical version number of the driver.
    [absolute_driver_path] is the path to the driver file, using a forward slash /

    Предупреждение
    titleNote!
    Note!
    When operating on a Linux system, you must specify the driver version, not the browser version. For example:
    [webdrivers]
    webdriver.firefox.v30.path=/opt/RobinPlatform/2.0.0/vendor/geckodriver-0.30
    webdriver.firefox.v30.path=/opt/RobinPlatform/2.0.0/vendor/geckodriver-0.31

    Attention! The config works with the [webdrivers] header

    To apply the slash work, you must replace it with a backslash

    Examples of filling:

    Template:
    [webdrivers]
    webdriver.chrome.v105.path=C:/chromedriver.exe
    webdriver.chrome.v106.path=C:/chromedriver.exe
    webdriver.chrome.v107.path=C:/chromedriver.exe


    Note! For platform versions earlier than 2.14.1, you need to create 2 files:

  8. Save the config files in the «.robin» folder. Now, in case the required driver is not available in the distribution, the robots and studio will use the drivers specified in the configuration files.

...