How can I pass capabilities in Selenium 3 in Robot framework?

Tell me how to pass capabilities in Selenium 3 in Robot framework.

Hello Tim,

You have to pass the capabilities in common.robot file as:

@{_tmp}
    ...  browserName: chrome,
    ...  platform: Windows 10,
    ...  version: 102,
    ...  visual: true,
    ...  network: true,
    ...  console: true,
    ...  name: RobotFramework Lambda Test

${BROWSER}          ${ROBOT_BROWSER}
${CAPABILITIES}     ${EMPTY.join(${_tmp})}