Facebook app Login not able to identify elements

Hi Guys,

spec:
appium 1.7.2
uiautomator

Not able to identify element in password field for facebook app since no text,id or content-desc is displayed and im not able to select the entered email id after the email is entered am i missing out something basic, have referred the below post

1.Not able to select the already entered email id field
2.Not able to identify the element in password field

Note: Trying to login through my Native app

I tried using the following but no action happens

Facebook password field- should i use MobileBy

@FindBy(xpath="//*[@class=‘android.widget.EditText’][7]")
public WebElement fbpwdfld;

How to derive only from class name,any suggestions please.thanks

have gone through can anyone provide any workaround if NAF =true

the following worked :wink:

@FindBy(xpath="//*[@class=‘android.widget.EditText’][@NAF=‘true’]")
public WebElement fbpwdfld;