Use Chrome Browser for UIAutomation
${prefs}= Create Dictionary
… profile.default_content_setting_values.automatic_downloads=1
… download.default_directory=${default_download_directory}
… download.prompt_for_download=False
${chrome options}= Evaluate sys.modules[‘selenium.webdriver’].ChromeOptions() sys, selenium.webdriver
Call Method ${chrome options} add_argument ${browsermode}
Call Method ${chrome options} add_argument --start-maximized
Call Method ${chrome options} add_argument --disable-gpu
Call Method ${chrome options} add_argument --disable-extensions
Call Method ${chrome options} add_argument --disable-sync
Call Method ${chrome options} add_argument --no-default-browser-check
Call Method ${chrome options} add_argument --no-first-run
Call Method ${chrome options} add_argument --no-sandbox
Call Method ${chrome options} add_argument --disable-dev-shm-usage
${log_level}= Evaluate "--log-level=3"
${window_size}= Evaluate "--window-size=1920,1080"
Call Method ${chrome options} add_argument ${log_level}
Call Method ${chrome options} add_argument ${window_size}
Call Method ${chrome options} add_experimental_option prefs ${prefs}
Create Webdriver Chrome options=${chrome options}