(activeRequestTextarea)
| 443 | } |
| 444 | |
| 445 | const simulateUserPressingBackspace = (activeRequestTextarea) => { |
| 446 | if (activeRequestTextarea) { |
| 447 | let event = new KeyboardEvent("keydown", { key: "Backspace", keyCode: 8, which: 8, code: "Backspace" }); |
| 448 | activeRequestTextarea.dispatchEvent(event); |
| 449 | } |
| 450 | } |
| 451 | |
| 452 | const simulateUserPressingMoveMouseRight = (activeRequestTextarea) => { |
| 453 | if (activeRequestTextarea) { |