I'm trying to pick item from drop down list using Puppeteer, I tried multiple ways but didn't work. After viewing the source code I found two times mentioned for the drop down, one in ul and li tag and the the other part in select options tag.
First one:

Second one

I hope get help to solve this, and will appreciated
await page.waitForSelector('#Type_Watches');
await page.waitForTimeout(10000);
await page.select('#Type_Watches', 'Casio')