mirror of
https://github.com/bringout/oca-ocb-technical.git
synced 2026-04-18 03:32:03 +02:00
9 lines
273 B
JavaScript
9 lines
273 B
JavaScript
import { triggerEvent } from "@web/../tests/helpers/utils";
|
|
|
|
export function simulateBarCode(chars, target = document.body, selector = undefined) {
|
|
for (let char of chars) {
|
|
triggerEvent(target, selector, "keydown", {
|
|
key: char,
|
|
});
|
|
}
|
|
}
|