Why "show invocation counter" option disabled in Call Tree View Setting? - jprofiler

I using jprofiler version 8.0.5. And i don't know why that option disabled. is there anyone can help me? Thanks you in advance.
enter image description here

Invocation counts can only be displayed if the method call recording type is set to "Instrumentation" in the profiling settings.

Related

Tosca not edifying field in FIORI test automation

I'm currently using Tosca to automate a specific SAP process in FIORI. At the end of the process, I need to click a specific field to finish the process.
What happens is that the program doesn't recognize the field. I tried multiple scans and rescans and nothing worked.
Any advice to overcome the situation?
Please see screenshots.
thanks in advance.
Try to find RadioButton inside the DIV in XScan.
It is better to use set value True/False (if possible) than to click on the element.

IBM RFT: object finder dissappears

I am attempting to use object finder on RFT v9.1. It suddenly disappears when attempting to highlight a object. Is there something I need to do to correct this? It use to work and suddenly stopped.
Try to reinstall the RFT i have faced this issue too. sry for late reply...
It is a problem with RFT; even with version 10.2.
What you can do is -
Restart machine
Go to Task manager -> Processes tab. And find your process, right click and Bring to front.
If you find any permanent solution, please reply.

Why press the stop debugging button during a debugging session crashes the host?

I've successfully managed to implement ZBS to debug the scripting code of a C++ real time game. It works really great!
However, there is still an issue that I don't know how to solve: if I press the stop debugging button or menu option during a debugging session, my C++ host program crashes.
Would you please give me ideas of why this could be happening?
Thanks a lot in advance,
kind regards,
Mauricio.
Stopping debugging calls os.exit(1, true) by default, so you will need to check if the resources are correctly released in this case. If you want to provide your own handler, you can do it by setting require('mobdebug').onexit = function() --[[your exit handler]] end in your application.

Selenium IDE - Not capturing button link

In Selenium IDE, the application has got image as button. The click event for that is not capturing. Is there any alternative Selenium Commands available for that or otherwise, is there any JavaScript user extensions can be added?
Please help.
Thanks
Yes.. the image will act as a button..
Found a solution for that!!
Simply added a JavaScript code which supports clickAt() commands.
To detect button as image you can use one of the below solution
xpath=//img[#src='/images/logo_home.png']
xpath=//img[#alt='Home']
//img[#src='/images/logo_home.png']

Track eclipse plug-in usage

I want to track a set of custom plug-ins usage in Eclipse.. Like how many time they clicked the menu option etc...
Do you guys have any clue / suggestions?
Thanks..
Yea, there is a Usage Data Collector that you can use that does exactly this.
http://www.eclipse.org/epp/usagedata/
I haven't used it myself, so I'm not sure if this is working like you want out of the box, or if you will have to make some adaptations.