Hi @Puneet, there are a few ways of scrolling a webpage to the bottom of the page without using JavaScript Executor:
- 
WebElement body = driver.findElement(By.tagName("body"));
body.sendKeys(Keys.END); 
- 
WebElement body = driver.findElement(By.tagName("body"));
body.sendKeys(Keys.chord(Keys.SHIFT,Keys.TAB));