import.io connector not doing anything after pressing stop? - import.io

When I create an import.io connector after recording the connector, I press stop and nothing happens. It just takes me back to the first step.
Is there a set that I am missing or how should I fix it?
I have watched the webinar 'The import io Crawler' on YouTube and followed it step-by-step.

Related

How to solve Mouse over error in Selenium IDE Script Recording

I'm new to selenium. Currently trying to automate the testing process of a react Django based app using selenium script recording in selenium IDE. I'm facing repeated issues in mouse click parts.
After i record the process and run it, it breaks in a mouse click script. My testing software have a create, update and delete function. most probably the error comes in clicking the update and delete button. So, right now i'm using Tab button to reach update and delete button which is a little time consuming in the recording process.
The above given image is where i get the error
The below is the log of the error
Is there any way to overcome this issue or any way to change the script on the error part to make it right.
Also, it would be kind if you suggest me any other best way to automate testing of my react application other than this way.

Colab audio alarm or pop up notification to remind the user to click captcha button when popped up, prevent inactivity

From March 2021 google colab has added a captcha that randomly pops up after some time. So it is difficult or not possible to programmatically prevent Google Colab from disconnecting on a timeout. So there's no option other than opening the tab and clicking the captcha button. I often run model which take more training time and sometimes miss going back to it in 90 mins. The captcha can be popped up even while the training is not completed and soon terminates after a few minutes if not clicked.
Are there any solutions so that I can at least get an audio notification when I get a captcha in colab or if not pop-up message in browser or OS so that I can know about the inactivity?
I had found some ways get notified at some target lines in the notebook, say after training is completed. One is the colab browser notification feature, can be checked to true in settings. Other one is an audio solution, you just add these 2 lines of code found here to get an alarm when the code executes at any line in a cell.
What I am looking for is an alarm or pop up message in case of captcha.
This is probably a half-correct answer, but here's my shot at solving this
This article discusses how to bypass Captcha's, and has some code that clicks the check box if a captcha is found. I think it could be modified to have a sound alert instead.
However, Captchas were made to counter these sort of tools, plus I'm not sure about the legality implications etc, so I wouldn't recommend it.
The use of the below js increased the time before google sent a recaptcha for me. Btw, I set this as a bookmark, to call it whenever I need to. Executing the js bit in the console should be equivalent.
javascript:void(setInterval(function(){ console.log("Connect pushed"); document.querySelector("#top-toolbar > colab-connect-button").shadowRoot.querySelector("#connect").click(); },60000))

How do I permanently dismiss the ..."Powered by Data Catalogue" pop-up in BQ

Recently (last month or two) I've been noticing a popup that keeps showing up when I open BigQuery. It says:
Try search and autocomplete powered by Data Catalogue
When I hit "Dismiss" on this pop-up it goes away for a while but as soon as I come back to the BQ query editor it just comes back again. It's infuriating!
Does anyone know how to get rid of this advertising permanently without enabling it?
The issue has been reported on issuetracker platform, which says that:
The Prompt will not be visible by default once BigQuery UI's 'V2 Beta'
version is launched in November.
I will recommend you to subscribing the issue by starring it. When you star an issue, you receive email notifications about any upcoming chnages. Additionally, keep track of the latest BigQuery releases here.

iTune Connect analytics - The URL is invalid

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!

Uploading files to server via JSF 2.2 and h:inputFile

UPDATE:
It turns out that there was an ajax call inside the inputFile that would cause the upload to start prematurely. That ajax was supposed to handle the selected file before the actual submit button was clicked, but neither I nor the person who coded it before me knew it would behave that way. And, as we only tested it either locally or with small files, we never noticed the problem.
I'm a newbie when it comes to file upload and I need some guidance on that subject.
I have a code that gets a file through h:inputFile then, when the submit button is pressed, sends it to the server using InputStream and OutputStream in a pretty standard way. It works well, but I'm facing a problem:
When I select the file, it takes its time to upload to the page(?). Then, when I click the submit button, it takes its time again to send that file to the server.
To make myself clear, here's a real case: I clicked the inputFile button and selected a 50mb file. It took 10min to conclude that. Then, I clicked the submit button and it took another 10min to send it to the server. That's a total 20min to upload that file, when it should have been only 10min.
Saving that time is crucial for my users, since their internet is very slow (< 1mbps) and they will be uploading videos around 40-90mb, which will take hours.
So, how do I optimize that? And, as I'm already asking, how exactly does h:inputFile work - I mean, it sets the Part in the bean, which can then be handled, but does it actually upload the file right away?
I'm using JSF 2.2.7 and GlassFish 4.
(Sorry that I didn't post the code, but I don't really think it's necessary. If that's not the case, just let me know.)