Can TestCafe access elements in userVariables with Javascript?
I have a .testcaferc.js as below module.exports = { userVariables: { stress_test_num_rep: 200, } } and some simple code to test it import { Selector, t } from 'testcafe'; import { setTimeout } from "timers/promises"; const { userVariables } =…