446 questions
-4 votes
1 answer
100 views
What is missing in selenium code to get complete html code to use with beautifulsoup?
I've recently learned how to webscrape with beautifulsoup and now I'm trying to learn a bit about selenium because I couldn't get correct info with beautifulsoup alone. I think there is javascript ...
1 vote
0 answers
33 views
Experiencing Http timeouts when Http calls are made from two .Net frameworks together (.Net Framework 4.8 and .Net Standerd 2.0)
I have an ASP.Net Web API built on .Net Framework 4.8 and we are using a self created nuget library which is built on .Net Standerd 2.0. this nuget library makes Http calls to 3rd party service. To ...
0 votes
0 answers
52 views
RabbitMQ Socket Closed Issue : c.r.c.impl.ForgivingExceptionHandler - An unexpected connection driver error occurred (Exception : Socket closed)
I have created separate applications: one runs on the main server, and the other runs on a networked machine connected to the main server. The IP address of the main server is 192.168.0.15, and the IP ...
0 votes
0 answers
71 views
Telegram bot have freeze when sending picture to chat users, but not always. TelegramNetworkError: HTTP Client says - Request timeout error
Please help me with my problem. I have telegram bot on aiorgma 3.0 (python). It send message as business reports (text and table or chart photo) to chat users by apscheduler cron. Everyday on fix time ...
1 vote
1 answer
110 views
How to "swallow" python's asyncio library's TimeoutError exception
I have a python script that connects to a server and downloads a large amount of videos and photos. And when I say large, I mean in the tens of thousands. The total amount of data to be downloaded ...
1 vote
0 answers
178 views
AWS OpenSearch throws occasional timeout exceptions
I have set up an AWS OpenSearch Domain (version OpenSearch 2.13) and cluster. I have thousands of documents indexed and run ES queries on the index. Occasionally, a search times out, and I do not ...
0 votes
0 answers
54 views
Akka entity.discardBytes with Unmarshaller function
I have this function for POST http calls: public static String post(ActorSystem system, String uri, String json) throws Exception { try { HttpRequest post = HttpRequest.POST(uri)....
0 votes
0 answers
42 views
My Jenkins job failed with Timeout error and local System getting Lag and Generate Heat
I have created an node agent and executed 6 maven jobs parallelly each job can run one testng.xml file Issue 1: After sometime of execution my local system getting and generate more heat Issue 2: ...
0 votes
1 answer
129 views
Pip fails with ReadTimeoutError on internal Artfactory
TLDR: Pip/mamba/conda keep failing with a timeout issue on arbitrary packages. Pip is set up to pull from an internal artifactory. The contents of pip.conf [global] index-url = https://user:password@...
0 votes
0 answers
91 views
How to effectively abort a GraphQL FastAPI API in Python after a specified timeout
Iam developing a GraphQL API using Graphql and FastAPI, and I'm encountering issues with handling long-running requests. My goal is to abort a request if it exceeds a specified timeout (e.g.10-15 ...
-1 votes
1 answer
112 views
Not able to click on element in a Selenium using Python automation script
Issue Description: I am trying to automate a process where I can visit a website, hover over the menu navigation bar and click on each navigation category options from tier 1 dropdown, visit that ...
1 vote
0 answers
74 views
Hi, I am getting WebDriver Exception in Azure Devops pipeline for my Selenium Csharp based test suite
From last 15 days I started getting this line which is executing the command to print data to PDF, below is the details, I tried in local, its working perfectly fine, even in the VM where Test suite ...
1 vote
3 answers
167 views
In Google Sheets, Is there a way to `catch` the "script timeout" exception and log some quick information, before the script is actually terminated?
I have a very large application, written in TypeScript, using Visual Studio Community, that I publish using CLASP. At times, part of this application can run very slow and cause the script to be ...
0 votes
2 answers
59 views
Solving TimeoutException with Python (Selenium)
For a small project I need to extract insolvency announcements from the following website: https://neu.insolvenzbekanntmachungen.de/ap/suche.jsf What I need after typing in todays date and selecting &...
2 votes
1 answer
397 views
Timeout error when reading large blobs in Azure container through Java SDK
I am trying to read the InputStream of a large blob from an Azure container and store it in another cloud storage of my own. For small files, it is working perfectly. But for large blobs (around 3GB), ...