testdriverai 5.7.5 → 5.7.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agent.js +1 -0
- package/lib/commands.js +2 -2
- package/package.json +1 -1
package/agent.js
CHANGED
package/lib/commands.js
CHANGED
|
@@ -458,8 +458,8 @@ let commands = {
|
|
|
458
458
|
// remove any modifier keys from the inputKeys array and put them in a new array
|
|
459
459
|
inputKeys.forEach((key) => {
|
|
460
460
|
// change command to control on windows
|
|
461
|
-
if (key === "command"
|
|
462
|
-
key =
|
|
461
|
+
if (key === "command" || key === "control") {
|
|
462
|
+
key = commandOrControl;
|
|
463
463
|
}
|
|
464
464
|
|
|
465
465
|
if (!config.TD_VM && modifierKeys.includes(key)) {
|