Help! - Scroll works on one screen but not another - details all same

Hi,
Can someone please advise on what I am doing wrong or help point what may be wrong :frowning:
Tried everything I can find online so far.

I have a Android app where I want to scroll down screen.
On one page, scroll works fine, but others it doesn’t

Works on page with menu list but not one with just standard text.

Works for:
driver.findElement(AppiumBy.androidUIAutomator(“new UiScrollable(new UiSelector()).scrollIntoView(text(“Record Scan”));”));

Doesn’t work for others:
driver.findElement(AppiumBy.androidUIAutomator(“new UiScrollable(new UiSelector()).scrollIntoView(text(“SEXED SEMEN”));”));

Can anyone advise what issue may be or a advise on a fix?

Appium: 2.0.0.-beta.66

Thanks

it is native command that expect to scroll inside ScrollView. while you do not have such element

UiScrollable is a UiCollection and provides support for searching for items in scrollable layout elements

Scroll using other methods e.g. by coordinates of window