In case of an old Chrome, Edge (Chromium) version, the browser may not launch properly due to a version error in rare cases. This error is due to a version discrepancy in the ChromeDriver or Microsoft Edge driver libraries required for the test. This problem can be resolved using the following procedure.
- From the ChromeDriver download page or Microsoft Edge driver download page, download the ChromeDriver or Microsoft Edge driver for the browser version you are using (note that Microsoft Edge is not legacy), and unzip it to an appropriate location.
- Open the MagicPod setup file (in case of Windows, “C:\Users\<Username>\AppData\Roaming\magic_pod_desktop\magic_pod_config.json”, in case of Mac, “/Users/<Username>/Library/Application Support/magic_pod_desktop/magic_pod_config.json”) and write as follows. This should resolve the version error. (In the case of Windows, note that it is necessary to record “\” and “¥” as “\\” and “¥¥” in the path. )
{
...
"driverExecutablePath": {
"chromedriver": "ChromeDriver execution file full path"
},
...
}
Settings in case of Chrome
{
...
"driverExecutablePath": {
"chromiumedgedriver": "Microsoft Edge driver execution file full path"
},
...
}
Settings in case of Edge (Chromium)