iTune Connect analytics - The URL is invalid - app-store-connect

Last several days when trying to enter iTunes connect analytics it says error message:
The URL is invalid.
I'am using chrome of version 66.0.3359.139. same happened using safari of version 11.1
Have any ideas about the error message?

I've seen this before and it usually goes away if you refresh the page but this time around it seems to be a problem at Apple that's been going on since the end of April:
https://forums.developer.apple.com/thread/101755
There are a couple of tips in that thread which are helpful, such as clicking OK then pressing esc to prevent the redirect away from the page which allows you to interact with it.

This issue is highly being discussed in Apple forums.developer.apple.com/
And the solution that works is:
You can work around it in Google Chrome by inspecting the webpage and deleting the modal window from the DOM Tree. This allows you to interact with the page again, reading stats or clicking towards an other page.
clicking OK then pressing esc as John mentioned works as well!

Related

Google Colabs - Mobile - Blank code cells

If I visit a Google Colab on Google Chrome on Android or through Discord app browser, all my code cells will load blank. On top of that, the notebook saves right away yielding a blank notebook to history.
What is causing this? And how can I prevent it? If the browser is in Desktop mode this doesn't happen but isn't always set to on by default.
The issue in on mobile version only.
If you pass on desktop version, no cells are wiped!
After you pass on desktop version,you can use version history to restore you lost code!
But where i can post this issue? Google must fix the mobile version!
Yes, it's incredible that this issue hasn't been fixed, especially since it used to work IIRC a few years back.

Can Selenium handle Browser Notifications in the OS?

In the screenshot below, I make a VoIP call from an incognito window to an account logged in in a normal Chrome window that is minimised. Therefore I receive the Chrome notification in the bottom right corner.
I am tasked with creating a front-end test to validate the text in the notification window, that would work for Windows, Linux, and MacOS situations.
Now this may or may not be a silly question, but is there a way that selenium can handle tasks related with this notification, for example validating the text that appears in it? I can't find anything online and I understand it is not a DOM element, so I wonder if it is even possible. Could someone provide a basic start point for finding this non DOM notification element if it is possible / how to go about testing it in the front end if selenium is not the answer? TIA.
Notification example

iTunes Connect: app’s developer support website

It used to be one can update developer’s support website for an existing app. I can’t seem to find it anywhere. Any suggestions?
Click on the current version of the app (probably says "Ready For Sale") to show its details page. The Support URL field you're looking for is about 1/4 of the way down, on the right. Make a change and hit the Save button at the top.

Login popup box not working in Firefox but is OK in Chrome

I have read the advice on posting a question that should be as precise as possible and used the advanced search facility so I hope my question has not been covered previously.
NOTE: I am not a programmer and can only just about find my way around code (in my site`s cpanel).
My site`s login popup box does not work in Firefox - although it did so for 3 years prior, up until a few weeks ago, so maybe there is an issue with a recent FF update). It does however work OK in Chrome.
Hovering over the login/register text shows the alt tag "Click to show popup login form" but nothing happens when clicked.
Can you provide a URL for others to see what you're referring to?
Firefox was just updated to version 18 I believe. I would try and downgrade to 17 just to confirm that it's an issue with FF. If it is I'd open an issue with mozilla (https://bugzilla.mozilla.org/). Also search there for your issue.

WebBrowser Control is Running into Javascript Error that IE doesn't

If I use IE I can visit the website I want and click the 'Next' button and life is good. If I open that same website using the webBrowser control and click the 'Next button I get a javascript error message.
I'm not doing anything in the code to manipulate the website. My goal, eventually, is to have some level of automation; but at this point, I get the javascript error and a pop-up and it screws everything else.
I can hide the JS error from popping up; by setting 'WebBrowser1.ScriptErrorsSuppressed = True' but the page isn't working because of the error.
The client script might be assuming a full browser is present and trying to access part of the browser outside the Document Object Model (DOM) of the page. For example, maybe the client script is trying to display something on the browser's status bar, or trying to modify a toolbar which isn't available in the WebBrowserControl. There could be numerous similar reasons.
If you do not have write-access to the web page in question to try fixing it, then play with WebBrowser Control properties such as ScriptErrorsSuppressed and ObjectForScripting
Try setting WebBrowser1 Silent property to true.
Actually, you are receiving this problem because when you run your site in IE8 or IE9 on your normal internet explorer desktop app, you are getting either IE8 or IE( rendering, depending on which you have installed. However, with the webbrowser control, unless you take the effort to change soem settings in the registry, the default rendering engine used by the webbrowser control is IE7 (if u have 7, 8 or 9 installed) and IE4 (if you have 4, 5 or 6 installed).
This is why you are having the problem, if you want help changing the rendering engine version for your webbrowser control, do a google search as there are many examples on SO, and i have provided this answer in some of my previous posts on this tag/topic. feel free to search or ask me.
Let me know how you go.