$('[class="isgrP"]').scrollBy(0,350)
find the scroll bar element and scroll that using scrollBy
scrollbar = driver.find_element_by_class_name("isgrP")
driver.execute_script("arguments[0].scrollBy(0,350)", scrollbar)
or
This will scroll till the end
driver.execute_script("arguments[0].scrollBy(0,arguments[0].scrollHeight)", scrollbar)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…