Hi ,
There is a problem in Android to select the element in the list using the element.SlectByText / index,
Instaed you need to use the javascript to do it.
Please find the below javascript which will solve your problem
"ItemValue" is the name of the item.
string scrpt = "try { var flag=false; var listLength = arguments[0].options.length; for (var i = 0; i < listLength; i++)" +
" { if (arguments[0].options[i].text == arguments[1]) " +
" { arguments[0].options[i].selected = true; flag=true; break; } } return flag;} catch(ex){return false;}";
Boolean scriptRet = (Boolean)((OpenQA.Selenium.IJavaScriptExecutor)driver).ExecuteScript(scrpt, element, ItemValue);
Regard's
Sai