how can i execute a script with QR code scanning - api

I'm curious to know if you can store information like First Name, Last Name, Username, that sort of thing on a QR code alongside a code/script that when the QR code is scanned the script runs and automatically fills in those fields on an app. If so are there any suggestions on how I can achieve this.

Related

How to scan QR in webform vb.net

I want to do QR Scanner in webform VB.NET. I want to do like this press a button to open the camera then scan the QR Code. I found one package call QRCoder can generate the QR Code. My problem is I did not find the way to decode the QR. Does anyone know how to do it? Thanks in advance.
You need to scan the QRCode in your front-end, not the back-end. You can use this library to scan a QR Code and send to your back-end.

Typing text with testcafe is slow in our app for a particular page, dropdown actions in that page are executing fast

When I try to enter the text first name in the input text field is executing more than 50 times in the background, like the below status bar is blinking in Green color for more than 50 times.
Even entering the Credit card number, name entering is also having the same issue.
I suggest you create an issue in the TestCafe GitHub repository and add required information and sample code to reproduce the issue. If you can't share the info publicly, please send it to support#devexpress.com

How can i automate my computer?

On windows 10.
I need to automate the repeated process of these steps.
1. Open up an image in GIMP. Scale it to 110%.
2. Export as somefile name(for example input001.jpg).
3. Go to http://deepdreamgenerator.com/ in a browser. click on button, browse to the exported file.
4. Wait for it to generate result, save image as result file (for example dream001.jpg).
then repeat from step 1 with the result file from step 4...but keep increasing the filename number so export it as input002.jpg...
What software would allow me to do this?
the only software i know of that * MIGHT * be able to automate that process is AutoHotKey
You would need to keep the windows which you're automating static (ie. make sure they don't move) and then write keyboard and mouse macros in autohotkey to press the buttons and do the things you want.
I tried AutoHotKey but didn't feel like learning a whole new scripting language so I found something simpler called GhostMouse.
It just has record,play,stop buttons.
after recording and closing out of program it asks if i want to save script. clicked yes gave it a name, and then edited the script file..and copied and pasted as many times as i wanted the script to run (before copying and pasting i deleted the last 3 lines which has to do with clicking the stop button which i didn't want the script to do).
You can also try Sikuli for same. It's an image comparator
http://www.sikuli.org/
Reference :-
http://doc.sikuli.org/tutorials/

How to catch barcode-scanner?

I am creating a system that when the user uses the barcode scanner, it will automatically fill into a specific field.
Example: The cursor is in the textfield4, when I click the barcode scanner, the input should be placed in textfield1.
Thanks in advance for the help.
I have downloaded the SDK but I'm having a compatibility issue. I am using symbol barcode scanner LS2208. The SDK Provided by motorola isn't working.
I tried catching the time of input when enter is pressed. 1st scan is good, after that it leaves out the 1st few characters behind.

Automate using selenium to Validate data displayed

I am currently working on a project which has few Id's in the first screen and depending on the Id selected, user is navigated to second page which displays respective Id's information. All the information displayed is retrieved from SQL database.
Here is my question how can I automate this using Selenium.
Thanks in advance
If you have a coding background I would suggest writing some basic automated tests with Selenium WebDriver. This will allow you to find elements on the page via their ids, get text from textfields, click on links, and verify that another page has loaded (sounds like the tasks you wish to perform?). You can structure your tests so they run through the main functionality path (eg. go from log in, to main screen, to another screen, testing all functionality along the way) and then you will only have to write a few tests. If you want full automation it is usually better to have specific requirements for your application and write a separate test for each. The Selenium homepage has some good documentation with code snippets to get you started, and a simple google search should provide you with several tutorials. Good luck :)