I'm facing an issue with scrolling/swiping down in an Android application while using codeceptjs. The method I'm currently using only works on the visible element, but I need to scroll down to the bottom of the page or a specific element without targeting any particular element.
static async Scroll(){
let locator1 = '//android.widget.ScrollView' ;
let locator2 = '//android.widget.TextView[@text="xxx"]';
I.swipeTo(locator1,locator2,'up',30, 200, 800);}