Unable to select the Drop down values

Hi team,

could you please help me how to select the drop down text and i have found that text suggestions are not visible in the UI Automator

Its urgent guys please provide some help

It might be in Web view, could please try to swtich to Web view and then try to select an element.

How can we switch the apk file into webview could you please suggest any method

Sampe Code:
Set contextName = driver.getContextHandles();
System.out.println(contextName);
for (String contexts : contextName) {
System.out.println(contexts);
if (contextName.contains(“NATIVE_APP”)) {
System.out.println(“Show me:” + contextName);
Thread.sleep(1500);
driver.context(“NATIVE_APP”);
driver.findElement(By.xpath(“Element Xpath”)).click();
}
if (contextName.contains(“WEBVIEW”)) {
driver.context(“WEBVIEW”);// Here get page source and search respective element
driver.findElement(By.xpath(" Element Xpath")).click();
}