Open yazhamuthan-aruchamy opened 1 year ago
the Issue here is in this code:
time.sleep(10) CFelement = WebDriverWait(drvr, 20).until(EC.visibility_of_element_located((By.CSS_SELECTOR, "label.ctp-checkbox-label"))) CFelement.click() time.sleep(10)
Issue is
Traceback (most recent call last): File "D:\Python files\Redbubble_Uploader-main\app.py", line 49, in CFelement = WebDriverWait(drvr, 20).until(EC.visibility_of_element_located((By.CLASS_NAME, "ctp-checkbox-label"))) File "C:\Users\yazha\PycharmProjects\pythonProject1\venv\lib\site-packages\selenium\webdriver\support\wait.py", line 80, in until raise TimeoutException(message, screen, stacktrace) selenium.common.exceptions.TimeoutException: Message:
it was waiting but not taking the agruments, ((By.CLASS_NAME, "ctp-checkbox-label"))) i think this was not working properly.
Yes they are trying to block the bots ability to proceed, any updates on findings to work around would be great
the Issue here is in this code:
time.sleep(10) CFelement = WebDriverWait(drvr, 20).until(EC.visibility_of_element_located((By.CSS_SELECTOR, "label.ctp-checkbox-label"))) CFelement.click() time.sleep(10)
Issue is
Traceback (most recent call last): File "D:\Python files\Redbubble_Uploader-main\app.py", line 49, in
CFelement = WebDriverWait(drvr, 20).until(EC.visibility_of_element_located((By.CLASS_NAME, "ctp-checkbox-label")))
File "C:\Users\yazha\PycharmProjects\pythonProject1\venv\lib\site-packages\selenium\webdriver\support\wait.py", line 80, in until
raise TimeoutException(message, screen, stacktrace)
selenium.common.exceptions.TimeoutException: Message:
it was waiting but not taking the agruments, ((By.CLASS_NAME, "ctp-checkbox-label"))) i think this was not working properly.