Questions tagged [timeoutexception]

TimeoutException is thrown when the time allotted for a process or operation has expired.

TimeoutException is thrown when the time allotted for a process or operation has expired.

427 questions
1
vote
1 answer

selenium.common.exceptions.TimeoutException: Message: Error trying to print out titles of shows

I got the error you can see above while running this short script: from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import…
1
vote
1 answer

Dart - Cannot catch an asynchronous exception

Here is a simple example of my problem: import 'dart:async'; void main() { try { Timer(Duration(seconds: 1), () { throw TimeoutException('1 second has expired'); }); } catch (o) { print("caught ${o.runtimeType}"); } } I…
ReubenBeeler
  • 142
  • 1
  • 10
1
vote
0 answers

Timeout handling in dotnet core API

My angular application is consuming dotnet core API. My API is comsuming other APIs to send response. Sometimes, the other APIs I'm consuming takes too long to respond. Thus, I dont want my angular application to keeps waiting for too long. I want…
1
vote
0 answers

Spring Webflux Webclient timesout intermittently

I am getting intermittent ReadTimeOut from netty with the below error: The connection observed an…
T Anna
  • 874
  • 5
  • 21
  • 52
1
vote
1 answer

SQL Server : getting execution time out exceptions from stored procedure many times, but when executing the query it returns output quickly

I have a webform where a student can login, on that form I will have to display the TOP 3 students along with their total score and id's. Also the total score of current logged in student and his total score For getting this information I have a…
1
vote
1 answer

TimeOut Exception Not Working, Element Not Interactable Selenium

In this section of my text, I am looping to select all check boxes across a number of pages (successful). When the next button is no longer enabled (and thus no more pages to turn, try command), I want to click the apply button. There are two…
1
vote
1 answer

Pip with broken connection: "connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out."

I'm trying to install a package (any package) with pip on Ubuntu 18.04 as well as Ubuntu 20.04. However, I end up with the following error message: $ pip install --upgrade pip WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None,…
dinatrina
  • 123
  • 2
  • 8
1
vote
1 answer

How to handle timeout exception in quarkus?

I am trying to connect to a third-party API from quarkus controller . I have a controller using the method of service. The try catch block is not working.I have all the required dependency and i followed quarkus doc Here is the…
1
vote
1 answer

Message: selenium.common.exceptions.TimeoutException

Im new to python and currently working on an auto submission on a checkout page. I understand that the element is within the iframe hence I have used By.Xpath,"//iframe instead. from selenium.webdriver.support.ui import WebDriverWait from…
Ben
  • 11
  • 1
1
vote
0 answers

Python - Selenium webdriver timeout exception error

my goal is to access the IMDB site from a different website and try to get movie genres. I can do this when I use the direct Xpath of the IMDB button on the website I redirected. driver.get("http://www.imdb.com/title/tt0118564/") However, when I do…
1
vote
2 answers

What happens when data is written to a replica in Cassandra, but the coordinator returns a timeout exception to the client due to lack of quorum?

Scenario: Client sends a write request to a coordinator node Replication factor is 3 and Read/Write Consistency level is QUORUM. Coordinator sends the request to nodes A, B and C. Data is committed to node A, but nodes B and C go down immediately…
Sara
  • 11
  • 1
1
vote
2 answers

How to catch a ColdFusion CFHTTP timeout exception?

I have a page where I make a remote request to an external API. I sometimes get request timeouts when making the request, so, my plan to set a timeout in the CFHTTP tag that is lower than my default requesttimeout setting and catch it. However, I…
Eric Belair
  • 10,574
  • 13
  • 75
  • 116
1
vote
3 answers

java/jdbc timeout in clojure

I am trying to add timeout to jdbc/query and jdbc/execute!. Somewhere in the web I found that both functions take :timeout as an option. Documention also says the options are passed to prepare-statment which takes in :timeout as an option. My…
Sarath VS
  • 71
  • 9
1
vote
1 answer

raise TimeoutException(message, screen, stacktrace) selenium.common.exceptions.TimeoutException: Message: Assertion failed

I have a problem with Selenium Webdriver, trying to locate the element, the program gives an error "raise TimeoutException(message, screen, stacktrace) selenium.common.exceptions.TimeoutException: Message: Assertion failed" My code is with a…
Hermine
  • 11
  • 1
1
vote
1 answer

Throw custom timeout exception

I have a Google Apps Script web app ("Web App") that executes as the user, then calls individual functions from another Apps Script project ("API Executable") via the Apps Script API using UrlFetchApp.fetch() and executes them as me (see Get user…