How to automate desktop/web applications on citrix [closed] - testing

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 months ago.
Improve this question
I have bunch of different applications that are on Citrix. Is UiPath my only options? ..I find the tool so boring. Is there any other options?.. Thanks for your help.

Some other options are Blue Prism or Automation Anywhere, but they will probably be just as boring.
The problem with automating Citrix is that all you are getting is an image of the user interface. No elements of the application are able to be viewed or interacted with. Therefore, the only option is using OCR to scan for text or other objects and return the relative screen position (x, y) coordinates. Then, you use those coordinates to input text or click checkboxes or whatever.
If you are looking to write code, you can probably get the screen position using an OCR class library or API. There's one available here ocr.space/ocrapi. It supports several languages, and might be useful if you want to go that route.

Related

Is there any console color contrast ratio checkers? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I'm working on automating accessibility testing and right now I'm looking for a console color contrast ratio checker. I know there are many browser extensions, but they are all manual and have graphical interface. My idea of it would be some tool that makes a screenshot, analyses it and gives back a text or image report with a number of violations and their location. The project I'm working on is a React application and I'm using Playwright for E2E testing.
If you open your DEV-Tools [F12] you can see the text color (in Firefox a round circle, in Edge a square). Click on it and the contrast-ratio will be shown.

Test Automation for HTML/JS/CSS Animations [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Is there any open source of commercial tools available for test automation of HTML/JS/CSS animations?
Is it possible to ascertain the visual artifacts by some means of image capture and comparison ( selenium offers image grab, but its more static) quickly to ascertain a test application pass/fail
Try to use Sikuli framework. Sikuli automates everything you see on the screen. It uses image recognition to identify and control GUI components. It is useful when there is no easy access to a GUI's internal or source code.
URL - http://www.sikuli.org/
Also you can use the mix of Webdeiver and Sikuli - SikuliWebDriver. Here you can find an example of using it: http://code.google.com/p/sikuli-api/wiki/SikuliWebDriver
I prefer using the Sikuli Java API and create wrapper functions around the Sikuli functions like click, type etc.
http://doc.sikuli.org/faq/030-java-dev.html

Does autotrader.com (vehicle marketplace) offer an API for posting vehicles? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Does anybody know if autotrader.com offers an API or something that would help with mass postings of vehicles?
Or does anybody have any idea of what to use to create something like this? I was thinking of maybe a mouse location and click over a browser window type of thing.
AutoTrader provides a bulk upload feature through a file feed process. The file runs through a set of processes to associate it with the proper listing tier (Premium, Feature or Standard) and in addition normalizes the information across vehicle make and models. This process runs several times daily and is being migrated to a near real-time solution for quicker add or updates.
I can find no documentation on it but I've come across this link which seems to provide a json response.
https://www.autotrader.com/rest/searchresults/sunset/base

Dynamic Collapsable Flow Chart Online [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Been looking through a number of other related posts relating to flowchart software.
I have been asked to put together a document outlining some of the typical problems our users encounter with our software product.
What I would like to do, is create an interactive/online flowchart that lets users choose from 4-5 overall headings on whats wrong. Then for this to dynamically expand more choices on pinpointing the problem, and so on and so on, until they can get a resolution to their problem.
The key thing that I have not been able to find in some of the flowchart software out there, is having the click + expand element.
- I dont want all options to appear to the end-user in a huge flow chart as it will distract away from their specific issue.
- I want them to be able to click away and go down a specific avenue that will end up giving them some good things to try, based on their decisions/clicks.
I was originally thinking of perhaps putting something in Flex or Silverlight (ideally someone would have a template out there) but am now thinking of taking advantage of 3rd party (ideally free) software.
This will need to be hosted in a browser.
Any ideas?
Check out FreeMind. It's mind mapping software, so not necessarily a flowcharting tool, but you can use it for what you describe.

Can anyone recommend an Image Gallery with a good programming API? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
What is the best solution/API for this? On my site users upload image, tag then and more. Instead of displaying the normal page where it shows the image and info (date, desc, user comments, etc) I want it to go to the next/prev image. Preferably with preloading. This code could be done either in flash or javascript, but I would need a way to give the user a link so they can pass it to someone else to continue at the same point.
Another thing I would like to support is a 'gallery' mode where it displays thumbs of multiple images and allows scrolling through them.
Is there an API I should use or should I hand-roll gallery and slideshow code?
How about Gallery - gallery.menalto.com? Version 3 has only just been released, but version 2.3 is very stable and has an extensive API.
To do what you're after have a look at
http://gallery.menalto.com/apidoc/ItemAdd/UserInterface/ItemAddFromServer.html
for saving images from the server, and at
http://gallery.menalto.com/node/66940
http://codex.gallery2.org/Gallery2:GalleryEmbed:getImageBlock
for extracting it out again (although use "getBlock" rather than "getImageBlock")
Flickr seems to have a comprehensive API. (But I have no experience with it.)