I have been using TestCafe for a while and did not face any redirect issue until now. When my tests are launched the website checks if I'm logged in or not and if not it redirects to the login page. This is where TestCafe started to hang (keeps loading until timeout) while redirecting to the login page and only in concurrent browsers (3 in my case). If I run my tests in a single browser (not concurrent) then I don't see any issue. I have skipJsErrors flag turned on as well as I read somewhere that it could be because of that too but that didn't resolve my issue.
I don't know how this issue started as no new updates from TestCafe released recently and no changes were done in my web application too. To fix this I changed my ${URL} to ${URL/login} and it started working for a day then suddenly started giving the same problem then I again changed back to my original ${URL} which fixed the problem again.
Any idea on how to fix this and what is the exact problem here?
Likely, there are some problems with the tested site. If you can create a minimal reproducible example that illustrates the TestCafe problem, please create an issue in the TestCafe repository on Github.
Related
I'm running a small scala Play application in dev mode on a vagrant box using activator run. When accessing the app from the browser some of the requests hang for what looks like indefinitely.
This seems to be the same issue as described in this question for play 2.0 Play Framework Hanging when hitting app in browser. The solution suggested there however doesn't seem to apply to the latest version of play.
I'm not sure where to start investigating this issue. Any help will be appreciated!
So after investigating it for a bit we realised that requests hang on routes that were protected by deadbolt. After replacing deadbolt all went back to normal. We were using deadbolt-scala 2.5.0 if anyone has any idea what might have been the issue there a comment here would be welcomed. But for now we stopped using the library.
I am trying to create and configure the Bluemix Single Sign On service and I am facing issues.
I create it unbound of any app, and when trying to setup it on the first dialog (provide a service name which will be part of its URL) it gets hanged. The browser is unresponsive for 1 minute or so and finally it fails with error message: "env: Client internal Error"
I am facing the same issue with Firefox 38.0.5, Chrome 43.0.2357.81m and IE 11.0.9600.17801
Any suggestion? Searching the forums I found as recommendation to clean browser cache and cookies. I already did it with no success.
EDITED: In parallel, I added as manager and developer another colleague to my Bluemix Space and it worked fine to him. So it seems it fails with my user which also is manager and developer but it exists in other spaces, etc...
Any thing I can check to narrow the issue?
Thanks!
on yesterday there have been a maintenance/upgrade activity so probably it your problem could be related to this.
Could you check again if it is working right now?
I am also trying to deploy a ZendSkeletonApplication on a shared host but I am facing some problem regarding redirection. The problem is when a user try to login it gets stuck to /projectname/user/authenticate. It doesn't get redirected to dashboard after authentication.Unfortunately all i see is a white, empty page. Locally it worked perfectly Here it looks like Zend doesn't recognize that it should do anything with this url and redirecto to appropriate action.
Thanks in advance
The problem is presented by the new release of PHP. Try updating your version of php above 3.xx. I upgraded to the latest version of php in the hosting and the problem was solved. PHP 5
Whenever I run Google App Engine it seems to be running an older version of the servlet than the last one I've saved.
What's going on? How can I fix this?
I'm using the GAE Eclipse Plugin.
I think this is a common pitfall. I also ran into a couple of times.
You should delete the cookies and the cache from Chrome.
If this isn't working, you should terminate and restart the server at eclipse all the time, when you modify the server side code.
I am developing a Facebook application and I am using Facebook C# SDK v4.2.1 to help with authentication. I am building the application using ASP.NET MVC 2 and am hosting it in Windows Azure (SDK v1.2).
Everything has been running fine when I had my application in a full browser window, but now when I am attempting to IFrame it in Facebook, I run into session problems. The behavior is that a new session is created on every new page request so the user always comes back to the application's login page. I can see that that Facebook session is valid when Facebook redirects back to the application after authorization, but when I set some session variables and redirect to another page, the session is gone.
When I debug the application locally, both as a standalone web application and in the Development Fabric, everything works fine. It is only when it's published to Azure that I get the problems. I have tried to have a local debug environment that is very similar to production where I have the facebook application at apps.facebook.com/myappnamedev that points to localhost on a specific port.
I just now also discovered that I only see the problem in IE (I am using v.8). Firefox v3.6 and Safari v.5 works fine.
Any ideas to help my troubleshooting? I have spent 10 hours on it and it's getting really frustrating... I am happy to paste code/configuration info if needed, just let me know.
Thank you in advance!
// Peter
I solved this. The redirect from Facebook after authentication landed on different pages in my development environment compared when deployed to Azure. I moved my authentication logic to global.asax instead.