I am not able to swipe /scroll down in an Android application, I am using codeceptjs and following method but this method will act only on the visible element but I need to scroll down to the bottom of the page /on a specific element without using any element.
static async Scroll(){
let locator1 = '//android.widget.ScrollView' ;
let locator2 = '//android.widget.TextView[@text="xxx"]';
I.swipeTo(locator1,locator2,'up',30, 200, 800);}