'puppeteer, select li tag or option not working

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: enter image description here

Second one enter image description here

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')


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source