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
My message was successfully sent to chatGPT, but the code didn't seem to parse chatGPT's reply correctly and got stuck waiting for it.
Specifically, the code stuck in the following line loop, the second condition of find_elements always returns 0, even though the browser has already seen the reply message from GPT:
while len(self.driver.find_elements(by=By.CSS_SELECTOR, value='div.text-base')[-1].find_elements(
by=By.CSS_SELECTOR, value='button.text-token-text-tertiary')) < 1:
The text was updated successfully, but these errors were encountered:
My message was successfully sent to chatGPT, but the code didn't seem to parse chatGPT's reply correctly and got stuck waiting for it.
Specifically, the code stuck in the following line loop, the second condition of find_elements always returns 0, even though the browser has already seen the reply message from GPT:
The text was updated successfully, but these errors were encountered: