You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I seem to be having an issue with using the scroll_to() function with selenium, throwing an error of TypeError: 'float' object cannot be interpreted as an integer.
I don't see any examples documenting how this is supposed to be used, but nothing I've tried seems to be working.
I am selecting the element via XPath, and neither wait.until(EC.element_to_be_clickable((By.XPATH, 'xpath'))) or driver.find_element(By.XPATH, 'xpath') have worked. (even with a generic 5-second delay between page load and it finding the element). Any assistance with this would be appreciated, as I am at a loss for what to do to fix this.
Thank you!
The text was updated successfully, but these errors were encountered:
Hi, I seem to be having an issue with using the
scroll_to()
function with selenium, throwing an error ofTypeError: 'float' object cannot be interpreted as an integer
.I don't see any examples documenting how this is supposed to be used, but nothing I've tried seems to be working.
I am selecting the element via XPath, and neither
wait.until(EC.element_to_be_clickable((By.XPATH, 'xpath')))
ordriver.find_element(By.XPATH, 'xpath')
have worked. (even with a generic 5-second delay between page load and it finding the element). Any assistance with this would be appreciated, as I am at a loss for what to do to fix this.Thank you!
The text was updated successfully, but these errors were encountered: