Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
299 views

Uncaught (in promise) TypeError: Cannot read properties of null (reading 'length') this error was showing when i click the vue3 simple typeheaad how to fix this error when i click the input field in ...
user22133071's user avatar
0 votes
0 answers
25 views

I am managing a third-part app made with python's framework Karrigell. I have added a new logger, my_logger, which is declared and instantiated in a file called my_logging.py I see that the logger can ...
Tms91's user avatar
  • 4,409
2 votes
3 answers
627 views

After searching on SO, I could not find an answer to this problem. All of the questions I saw, the error was still being caught. I'm having the inverse problem. No matter how I refactor the following ...
Levi Roberts's user avatar
  • 1,317
2 votes
0 answers
94 views

I'm considering implementation of async logging. That means that several worker threads produce messages in memory and put them into a lock-free queue, and a single logging thread consumes this queue ...
Dmitry Kuzminov's user avatar
1 vote
1 answer
329 views

I'm using cypress version 13.9.0 and I get RangeError: Invalid time value at Date.toISOString on cy.reload(). Any ideas how to overcome it? waitForUpdate(employeeId, employeeName, employeeEmail) { ...
Edd's user avatar
  • 11
0 votes
0 answers
78 views

I copy pasted a gfg code (https://www.geeksforgeeks.org/how-to-connect-mongodb-with-reactjs/) which connects mongodb with react.I followed the steps as mentioned but got the error "Uncaught ...
Vasita's user avatar
  • 11
0 votes
1 answer
98 views

Im trying to code a board thats 7x7 and I need to set and check the limits of the board, so I made de following function: lim(X, Y) :- X =< 7, X >= 1, Y =< 7, Y >= 1. But ...
Pietro's user avatar
  • 23
1 vote
2 answers
235 views

I upgraded my Contao website from 4.13.38 to 5.3.1. Everything was successful, Contao Manager is working okay, but the website is not functioning. The error is logged in var/logs and points to a non-...
darkvarK's user avatar
0 votes
0 answers
104 views

So I am making a blog application. I have used an axios inceptors concept name is api.js - import axios from 'axios'; import { API_NOTIFICATION_MESSAGES, SERVICE_URLS } from '../constants/config'; ...
Arko's user avatar
  • 19
0 votes
0 answers
182 views

I am attempting (without any actual good knowledge of JS) to change location a program looks in for a "history" folder for a 2nd program. I've tried one method which failed miserably. Upon ...
rebellion1969's user avatar
1 vote
1 answer
510 views

I am trying to execute a simple program to visit a page - describe('Login to Tabaq', () => { it('Login Valid Test', () => { cy.visit('https://tabaq.ae/Login/index') }) }) Upon ...
Mohammed Imtiaz's user avatar
0 votes
1 answer
1k views

I get this error when I activate my WooCommerce Plugin: Uncaught Error: Attempt to assign property “translations” on null An error of type E_ERROR was caused in line 81 of the file /home/sageorvb/...
Savvy Sage's user avatar
3 votes
2 answers
3k views

I am getting a weird error in some older versions of chrome, probably 2019 ( I am using an embedded chrome browser ) when I try to load google maps. It does not throw an error in the current versions ...
emre deli's user avatar
  • 113
0 votes
1 answer
969 views

I'm working with cypress version 12 doing a simple test that I grab a tab and click on it. I'm getting the same error over and over again. My first thought was that this happens because the element is ...
Iván's user avatar
  • 441
6 votes
1 answer
18k views

I am trying to get an element and use Cypress type command but getting this error: ResizeObserver loop completed with undelivered notifications. Here is my code: `get signatureBtn() { return ...
Mehmet Şirin Tarhan's user avatar
0 votes
0 answers
325 views

I'm running cypress on my project, it's about a simple login using auth0, I'm getting: (uncaught exception)TypeError: Cannot read properties of undefined (reading 'pathname') on my file login.cy.jsx ...
alex 's user avatar
  • 281
1 vote
2 answers
968 views

I'm trying to download pictures from Telegram with the Pyrogram API. After some images I do get ratelimited but the code fails to catch the exception an wait the given seconds. I keep getting these ...
yuskox's user avatar
  • 11
1 vote
1 answer
6k views

enter image description here The following error originated from your application code, not from Cypress. Cannot read properties of null (reading 'length') When Cypress detects uncaught errors ...
user21952706's user avatar
0 votes
0 answers
88 views

So I have this Angular app that I've made for my company with a working web version but they've asked me to make it into a .exe app so I've searched for solutions. That's where I learned about ...
J1_1n's user avatar
  • 1
5 votes
0 answers
750 views

When I run the flutter app's video page on the web, I get "Uncaught UnimplementedError: init() has not been implemented." error. On iOS or Android there is no error. Even though I ...
Emre G.'s user avatar
  • 63
0 votes
0 answers
128 views

I have a C# program that scrapes news using Selenium from a website. Most news has an image on the top when opened, but some have a video instead of an image. In those cases, I want to save a default ...
Alexander Nedelchev's user avatar
2 votes
1 answer
2k views

With Javascript, I am trying to make a call to an external API when a form is submited. I am using promises in order to set follow up actions once the call is done and to catch eventual errors. This ...
Quentin Escaron's user avatar
4 votes
1 answer
3k views

When I run all my component cypress tests locally on a Macbook pro on a react-vite project with around ~10 tests, I get the following error: An uncaught error was detected outside of a test: ...
Matan Gubkin's user avatar
  • 3,209
0 votes
0 answers
72 views

I have the following code to try to save the URL file temporarily and then call it in a test, I am using selectFile command from cypress. cy.get('input[type="file"]').selectFile({ contents: ...
ealvarado's user avatar
1 vote
1 answer
2k views

This error has prevented me from using cypress for months now 😟 /// <reference types="cypress" /> describe('User login', () => { beforeEach(() => { cy.visit('http://...
alilland's user avatar
  • 2,663
0 votes
2 answers
171 views

it('Access URL', () => { cy.visit('URL') cy.wait(5000) cy.get('.login-btn').click() }) URL is working but login click is not working. (uncaught exception)TypeError: $(...).datepicker is ...
Jayalekshmi Arumugham's user avatar
2 votes
1 answer
3k views

When I'm trying to run cypress test I'm getting this error: The following error originated from your test code, not from Cypress. \> Cannot find module './commands' When Cypress detects uncaught ...
shesho47's user avatar
1 vote
2 answers
2k views

Im new in cypress, trying to login to my practice web, but I got problem with this gtag. The actual testing with cypress is done (user success login) but there is one error that keeps make this ...
f for respekc's user avatar
0 votes
1 answer
2k views

I've already read tons of resources to try to help me on this. This gist did not solve it for me (https://github.com/github/fetch/issues/203#issuecomment-266034180). It also seemed like this (...
BVBAccelerate's user avatar
1 vote
1 answer
994 views

I am using Cypress with Cucumber. I am trying to test cross origin login but the origin method keeps on throwing error: Code: Given(/^the user login to the Test Page$/, function () { cy.visit("...
sumitsingh13's user avatar
1 vote
3 answers
1k views

I'm currently trying to use Cypress for the first time and turn off cypress uncaught:exception during a certain test but I would like to turn it on once the test finished. How can I do that ? Thanks ...
Axel's user avatar
  • 13
0 votes
3 answers
3k views

uncaught exception I found the following answer to solve the problem, but as you know we no longer have support/index.js file with Cypress version 10 and higher. import './commands' Cypress.on('...
Mehmet Şirin Tarhan's user avatar
3 votes
2 answers
7k views

I don't understand why navigator.share() is giving me an error even though my website meets all of the requirements listed on MDN (has HTTPS and supported by the browser). The following code gives an ...
LuisAFK's user avatar
  • 956
1 vote
1 answer
1k views

This error is originationg from my app Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'links') But in my support/index.js I wrote import './commands' Cypress.on('...
Erenn's user avatar
  • 683
1 vote
1 answer
1k views

'''Fatal error: Uncaught Exception: Unable to open file /skins/MinervaNeue/skin.json: filemtime(): stat failed for /skins/MinervaNeue/skin.json''' I tried running MediaWiki 1.38 (upgraded from 1.37.x) ...
M Noivad's user avatar
  • 106
3 votes
1 answer
3k views

Taken directly from the sveltekit docs. When returning a 404 on page load an uncaught exception will occur that breaks the page: <script context="module"> /** @type {import('./...
Mat70x7's user avatar
  • 132
6 votes
1 answer
5k views

New Java programmers frequently encounter errors phrased like this: "error: unreported exception <XXX>; must be caught or declared to be thrown" where XXX is the name of some ...
Stephen C's user avatar
  • 723k
0 votes
2 answers
1k views

I have a problem in Typo3. When I am in the backend in the filelist menu or want to link something, I get the error message: "#1314516810: Folder "/" does not exist." (see ...
conan's user avatar
  • 1
1 vote
1 answer
2k views

I'm trying to implement a 3d design file (gltf) into a website with three.js and I'm keeping having this error: Here is the html/Javascript/CSS code : <!DOCTYPE html> <html> <...
Menelik Nouvellon's user avatar
-1 votes
1 answer
3k views

document.querySelectorAll('button').forEach (function(button){ button.onclick=function(){ document.querySelector('#hello').Style.color=button.dataset.color; } }); <!DOCTYPE html>...
thanush pk's user avatar
2 votes
0 answers
53 views

We have multiple microservice projects and one proxy/service registry which all services apis register in this service. now we want to catch uncaught expections. Since all services share registry ...
Kunjeti Aswarthamaiah Gupta's user avatar
0 votes
2 answers
721 views

I am trying to create a daily rotating log with log entries from throughout the application as well as uncaught exceptions: const { createLogger, format, transports } = require('winston') import '...
Lull's user avatar
  • 395
1 vote
0 answers
174 views

It's a weird bug that I am experiencing. My test fails due to a detached element from DOM(this is not the issue) and it auto-triggers a retry since I have retries enabled and set the number of ...
MeBhiAutomationTester's user avatar
1 vote
0 answers
261 views

Not sure what happened, but out of a sudden I am not able access the product page when I click on a product in my prestashop FO. This is the error I'm getting Fatal error: Uncaught Exception: ...
notverysmart's user avatar
0 votes
1 answer
37 views

If no catching the event of uncaughtException, when uncaught error getting invoked, the whole node.js proccess falls. But, should we let it fall, if yes, by exit immediately or try to gracefull shut ...
Raz Buchnik's user avatar
  • 8,489
0 votes
1 answer
567 views

If an uncaughtException occurs in Docker container running node app which is wrapped by Kubernetes Pod and due to this exception the server gets down, what should I do?
Raz Buchnik's user avatar
  • 8,489
1 vote
1 answer
495 views

I want to call a function inside a fetch, but for some reason I get the following error and can't find a solution. Uncaught (in promise): TypeError: Cannot read properties of undefined (reading '...
KoreLewi's user avatar
  • 467
0 votes
1 answer
771 views

I want to use clang-tidy to find out all uncaught exceptions by its direct or indirect caller, up to main, but this demo has no effect. Generally, I want to clang-tidy to report that the function cc ...
ddwolf's user avatar
  • 91
2 votes
2 answers
2k views

I am trying to write "unit-test" for components in react with cypress. Followed the link cypress docs on component testing when I wrote testcase for a component and tried to run with "...
CodeWorld's user avatar
  • 2,325
1 vote
1 answer
3k views

I am getting the "An uncaught error was detected outside of a test" issue with the following code but I am not sure why and how to resolve it? Any help would be great. Is there anything ...
Dhamo's user avatar
  • 1,222

1
2 3 4 5
7