I am trying to do some automation with the rather new GoogleChrome/puppeteer library, but I cannot figure out how to set a value in a select field.
Here is my (simplified) function to set the value of a text input:
async function setInputVal(sel, text) {
await page.focus(sel)
page.press('Backspace')
page.type(text)
}
await setInputVal('input.searchjob', task.id)
I cant figure out how to do the same for a select field.
I have tried to set the focus, insert script and execute but I cannot get it working.