Pyautogui error , unable to access a page - pyautogui

Actually I tried to use mouse actions in a page but am unable to access that page Its a pdf viewer from brave brower
likewise am unable to use gui on someother apps too
Why its happening Please Help me
This is the page am unable to access
This is the error am getting

Related

Lighthouse Report says: Audit error: libUrl.parse is not a function

When I generate a lighthouse report on my web application, I get this error:
and when I click on the Learn More link, it throws me a 404 error page.
I also tried to google this error message, but I couldn't find anything related to this.
Can anyone tell me why is this happening?
It is a known problem of the extension.
There is an opened issue in the Github of the project.

Custom Button CRM- Online 2015 Error

Have created a custom Run Report Button for a dashboard in crm online 2015, it works as expected in Firefox, But in IE11 a second sign in window appears, but I can't sign in, I'm given 3 attempts and then this is displayed.
HTTP Error 401 - Unauthorized: Access is denied
In Chrome this is the error that is displayed,
ERR_INVALID_AUTH_CREDENTIALS
I have tried using the internet security option and adding the sites, and that has not worked, also using a different user/pw, and its the same thing.
Can someone point me in the right direction?
Edit 1:
Below is one of the commands I added in Ribbon Workbench. What happens is when I click on the dropdown a separate windows appears with the report in Firefox. I have not added any JS.

Launching the Google Drive sharing dialog in an app. What should be the APP_ID value?

I'm following this article, trying to add a sharing dialog in a web app.
I got the button working in opening the modal popup, but it just prints this error in the console:
Refused to display 'https://drive.google.com/share?id=SOME_LONG_ID&foreignService=explorer&shareService=explorer&shareProtocolVersion=2&command=init&subapp=10&popupWindowsEnabled=true&shareUiType=default&rand=1386925457304&theme=2&client=postMessage&appId=MY_APP_ID&embedOrigin=http%3A%2F%2Fmy_app.appspot.com'
in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.
And the modal itself just shows the message "Sorry, sharing is unavailable at this time. Please try again later."
For the checklist at the bottom of the article:
The user is signed in to Google True
The user has installed your app False How do I ask them to install?
The URL of the page that launches the dialog must have the same origin as the Open URL registered for the app. True
So I have 2 questions:
How do I ask them to install my app? It's supposed to be a web app, where there's 1 button to select Drive files via the Picker API (which is now working), and then another button which will sow this Drive sharing dialog to set the permissions of the selected files. There's no need for installation. Will it work for this setup?
What should be the value for the APP_ID? I'm guessing it's the ID in the "Drive SDK" section of the Cloud Console? The console is so confusing and there's so many values for keys, ids, etc. that I have no idea which to use. Here's a screenshot of what I mean by the ID and what I'm trying to use.
(1) Installing means you have to get the user to accept the drive.install scope - instructions here. This will integrate your app with the "open with" menu in Google Drive. But before that can work you will need to tell the Google Cloud Console what url to go to when the user clicks "open" - more instructions. In your case, since you don't actually want to allow the user to open files from Drive you won't be defining any file types, so in reality there won't actually be any visible integration with Drive.
Note that the share dialog will only work on the one page which has the url you specify as the target for "open" (the instructions say this and from experience it seems to be true).
(2) Client ID You can find this in the Google Cloud Console - see above. Mine is a 12 digit number, so yours will probably be too.
I had the same problem. The iFrame error shows up when you call setItemIds if your app_id is wrong. No idea why. Anyway, it started working for me when I used the right app_id -- the one that shows up like in your screenshot.

Windows .net Google.Apis hangs on the call to InsertMediaUpload.Upload -- there is no timeout

I am using GoogleApis to upload documents to Google Drive using the InsertMediaUpload class from the FilesResource namespace and the Upload method. It is working well for me with the following exception:
After calling InsertMediaUpload, a browser window appears asking the user to log into their Google (usually Gmail) account. If the user simply closes the browser window instead of clicking on "Accept" or "Cancel" then the current process appears to be hung. I suppose there should a timeout of a minute or two so that if the user opts to not log in the current windows application will not simply hang and stop working indefinitely.
There is no need for sample code here. What should happen when the user simply closes the browser window instead of clicking cancel if they are no longer interested in uploading a document? Crashing (or hanging) the current process should not be a possibility, but that is what occurs. One would hope closing the browser window would have the same effect as clicking the cancel button -- just another way of opting out of an upload to Google Drive, right?
Thanks in advance for any help with this.
You're not supposed to get authentication message from InsertMediaUpload class. You should handle authentication by yourself. Authentication browser window you get is for your development convenience, not for production code. Please take a look at .net quickstart. In this quickstart, you'll see GetAuthorization method which handles authentication. Modify this method on your needs and you'll get what you want.

HTML Redirect a link to another link because of 403 error

Ok, so I have a button on my website, that I want to link to a video. It works when I'm viewing the site as a file on my computer; but when I view it on the web, it gives a me a 403 error. I figured this was because I was trying to access the file directly, and the site wanted me to access the file via the page just before the file. So I either need some code that when I push this button, it goes to the page before this file on their server, but then automatically redirects to this file. Or someone could just tell me another way to get past this problem.
Here is the code for the button on my site:
<td><span>Watch Now</span></td>
Thanks.
403 error is returned when the user doesn't have access to the file or media they are trying to access. Check to see what the permissions are on the mp4 you are trying to access and make sure it is accessible.