Style changes
This commit is contained in:
parent
57ed7d314b
commit
e6c8812ff4
|
|
@ -309,17 +309,11 @@ const actionParameterDisplayString = (
|
||||||
case 'page':
|
case 'page':
|
||||||
case 'frame':
|
case 'frame':
|
||||||
case 'elementhandle':
|
case 'elementhandle':
|
||||||
let string = keyboardDisplayString(action);
|
return (
|
||||||
|
keyboardDisplayString(action) ??
|
||||||
if (string !== undefined)
|
mouseDisplayString(action) ??
|
||||||
return string;
|
touchscreenDisplayString(action)
|
||||||
|
);
|
||||||
string = mouseDisplayString(action);
|
|
||||||
|
|
||||||
if (string !== undefined)
|
|
||||||
return string;
|
|
||||||
|
|
||||||
return touchscreenDisplayString(action);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return undefined;
|
return undefined;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue