Is there an any way to make report result uft has screen capture in every steps? - ui-automation

So, I have problem when I try to use the generate document (doc format) from UFT. Because there is not available screen capture for every steps.
Below im attached the generate document from uft and my screen capture setting.

Related

Populate Word Document From Powerapps App Input via Sharepoint and Power Automate

I'm working on an app for my company and I'm a bit stuck.
What I'm working on uses app input to build a quote form using various inputs throughout the app. Everything is working fine, the app is working and it generates the quote using the fields in my Word template.
What I'm stuck with is trying to get a signature onto the end of the quote, I have a list in Sharepoint with Name (Text), Position (Text) and Signature (Image) columns. I've got this working from a dropdown in the app currently that filters a dropdown based on position (Only includes one position in the dropdown).
I can insert an image into the app and get the image to show using a lookup but ultimately I want to be able to load the signature image into the Word document based on user - This is currently on dropdown for testing purposes but in the future I will link it to who is actually using the app.
I have a flow in power automate which populates the word doc using the Powerapps details and that all works great apart from when I try to add an image and the error appears that it's looking for a jpg or png. The image files are stored on the sharepoint list as jpg so I'm not sure where I'm going wrong.
Tried copying the lookup value that loads the correct image in powerapps to the relevant power automate call-out (Works with all text)
Also tried inserting an image into the powerapp using the lookup (This works and displays the correct image) and referencing the .Image contained here

Download reports from the Microstrategy with filtering

http://xx.xx.xxx.xx/servlet/mstrWeb?evt=4001&src=mstrWeb.4001&reportID=48C05A5F4CCF82CC07F4A1BE2D023FE5&visMode=0&reportViewMode=1&messageID=9850FBA54B678E5B6B66A4B1E527B7B5&stateID=0
This sample URL displays the report executed and saved in the archive. Before downloading, I need to specify an additional condition on one of the columns. For example, City = Samplesity How can this be implemented with the help of Microstrategy url api?
You could use a view filter (with a prompt) in the report and answer the prompt via MicroStrategy URLAPI. The problem would be that the prompt will be showed also to the users (if the report is executed with a subscription, then no problem).
Using a report in this way doesn't make much sense to me, better in this case to use a cube and create a report with a prompted view filter on top of it.
If by "saved in the archive" you mean stored in the History List then there is not much to do here. The History List contains an execution of a report, you cannot really modify it.
If you are looking for a way to filter on old version of your data you have to find another solution, like keeping historical version of the data.

Automation of clicks on webpage using Matlab

So I'm looking for a way to systematically access data from a website. This data is updated every 15 minutes or so, and is generated through a datamart system that makes custom reports following several input parameters: the desired date interval, the specific dataset.
All these parameters require me to click on some specific buttons; I was wondering if it would be possible to automate these click inputs using Matlab (or something else if need be), to retrieve the data and treat it automatically.
Thanks in advance!
I suggest you take a look at http://www.autohotkey.com/. This is a great tool which allows for the automatic clicking on any window (including a browser page) under Windows. It even will let you "search" your screen for pixel images and then click on those images. This would allow you to make a very small bmp file of the link you would like to click on, and then your script can search your page and click directly on the link.
As far as getting data into matlab I'm not exactly sure of the best way to do this, but you might consider saving the html of the page, and then parsing that from matlab.

SVG javascript chart scraping

When i access a yahoo finance for intraday data they show a interactive chart, but i only can find the data for the row my mouse was over the last time it was in the chart, it automatically updates the html... and then if go to the << left on the chart, the server request more data for the hide part from the chart...
example:
http://finance.yahoo.com/echarts?s=JPM
so my question is, in what file i can find all this data? i mean, they don't send it everytime my mouse go over the chart, so it must be stored somewhere...
the values of open,close,low,high,volume,%chg
or more right to the point,
how do i scrape data from this kind of charts?, i mean i give the url to one crawler and then it download all the from this chart, including move the chart to the << left until they stop to send more data
any ideias?
edit:
i heard about this selenium+python
anyone have any ideias? i still stuck =//
1) this chart is produced by javascript. Try to disable javascript and refresh page -> no chart
2) the chart is SVG
3) to be able to download SVG, you need a javascript capable library, like Phantom.js
4) you have to fetch what's in tag svg viewBox
Maybe a good start is beginning by something easy, like the tiger: http://raphaeljs.com/tiger.html
In this particular case, you can get stock data from NASDAQ in Excel spreadsheet format to work with. http://www.nasdaq.com/symbol/jpm/historical
They also allow you to set the time period of data you would like to access, as well.

How to avoid picture from being copied

I am onto a photo project. Dynamically added a watermark in the large picture preview. But someone with general idea can manipulate the link and get the original picture. Disabling Right button seems to be useless. In this case what can be the appropriate solution?
Disable any access to original pictures. Make server script that receives picture's ID (or name) and sets watermark before picture will be shown. And make your application such way that this script only can access images by users. If manipulation with link allows users to have unauthorized access, then it looks like you have problems with architecture of project.