dropdown details
I think its "November"
instead of "No
enter code herevember"
In JAVA you can use like this, You can apply the same logic in Python
//locate select drop down
WebElement monthsElement = driver.findElement(By.name("fromMonth"));
// use select class
Select monthsDrop = new Select(monthsElement);
//store the list all months in list using getOptions()
List allmonths = monthsDrop.getOptions();
//traverse and print all elements
for (WebElement tempmonth : allmonths) {
System.out.println(tempmonth.getText());
}