I am struggling to select a value from a dropdown box using WebDriverJS. Despite searching through the user guide, I have not been able to find a solution.
I even attempted to use methods documented for the Java version, such as:
webdriver.Select(driver.findElement(webdriver.By.id("vote"))).selectByValue("5")
However, I received an error stating that "Select" does not exist.
After reviewing the source code, I still could not identify a suitable solution.