您可以尝试另一种滚动方法。这对我有用:
driver.get('https://www.hepsiburada.com/magaza/a-34?tab=profile')
button = driver.find_element(By.XPATH, "//*[contains(text(), 'Satıcı Bilgileri')]")
driver.execute_script("arguments[0].scrollIntoView()", button)
element.click()
您可能需要添加等待元素完成加载的操作。