Quiero hacer math.random y poner ese valor en este script
let bday = Math.floor( Math.random() * (30 - 1 + 1) + 1 ); await test.page.select('select[name="day_select"]',bday);pero el problema es que necesito agregar '' a bday, porque si lo hago
await test.page.select('select[name="day_select"]','10');funciona, pero esto
await test.page.select('select[name="day_select"]',bday);y esto
await test.page.select('select[name="day_select"]','bday');no funciona
await test.page.select('select[name="day_select"]',`${bday}`);Creo que esto funcionaría en tu caso.