I\'m using Microsoft Edge Webdriver (Chromium) with Python3 in my script.
The webdriver configuration is as follows:
driveroptions = Options() driver
I tried the capabilities like below, it worked, you can have a try:
{ "desiredCapabilities": { "nativeEvents": false, "browserName": "chrome", "version": "", "platform": "ANY", "javascriptEnabled": true, ... } }