I've got a problem, because I need to scroll down the page,
so I decided to use IJavaScriptExecutor
IJavaScriptExecutor js = (IJavaScriptExecutor) driver;
js.executeScript("window.scrollBy(0,1000)");
I also tried
js.ExecuteScript("arguments[0].scrollIntoView();", invite);
js.ExecuteScript("window.scrollTo(0, document.body.scrollHeight)");
But it doesn't work.