How to perform Partial execution in HP ALM using PAF? - ipaf

I am doing PAF automation of HP-ALM using tags. I want to perform partial execution execution in HP ALM. Is it possible to handle the setup at the flow level and as well as activity level?

This feature helps the user to partially execute the PAF scripts in HP ALM.
To enable the partial execution attributes needs to be setup in your flow and activity files. manual = “true” in activity
In the activity, include the attribute manual=”true” for the steps not required to be executed in HP ALM or the steps that need to be executed manually before syncing to HP ALM.
Syntax
<tag attribute=”” manual="true"></tag>

Related

Can i have Test execution (Robot FR) statistics as custom statistics chart in teamcity statistics Tab?

i'm trying to display test results statistics in the statistics tab in Teamcity, so i will be able to see if a test is always failed (for example) via the static chart.
I'm not trying to have dashboard of the last tests executed (LINK) can't help me.
I can't use Robot Framework listeners because i use scheduletask on the remote machine to run test cases.
Any suggestions?
Solved by using the : "Providing data using the teamcity-info.xml file" here
after creating the "teamcity-info.xml" file in the root of the build, i create a custom chart with the keys : chart1Key / chart2Key (existing in the "teamcity-info.xml" file). So i will be able to see the OK/KO tests percents.
Find here the Result

Performance Testing of OBIEE application?

Following parameters should be set for OBIEE Presentation Server only during load testing.
OBIPS\instanceconfig.xml
save and exit file Restart OBIEE processes using OBIEE EM console.
<ServerInstance>
[...]
<Cursors>
<NewCursorWaitSeconds>36000</NewCursorWaitSeconds>
<OldCursorWaitSeconds>36000</OldCursorWaitSeconds>
</Cursors>
[...]
</ServerInstance>
You do know that this represents a value of 10 hours, correct? You are willing to lock resources for that length of time? This is counterintuitive for optimal application performance as you would seek to recover resources as fast as possible to support more sessions versus locking a resource for an extended period of time.
I refer to the following performance "compass rose" as a guiding item (independent of tool)
If you need to amend the file on a remote server you can do this either via OS Process Sampler or via SSH Command Sampler. The first one is a part of JMeter installation, the second one you can install using JMeter Plugins Manager
See How to Run External Commands and Programs Locally and Remotely from JMeter for more information, example configuration and sample commands.

How to generate and print executive summary after running scripts in UFT

I have a keyword driven framework in UFT. List of scripts listed in an excel file. Driver script simply executes one script at a time. After the test run, I get this executive summary from UFT.
How can I customize the executive summary so I can see the more information on the summary like steps details, which steps passed, failed, etc.? Also how can I print the executive summary?
I have a keyword driven framework in UFT. List of scripts listed in an excel file.
Most likely, you are using only one Action in your test suite, you are seeing only 1 test execution report. This is a general drawback of having Excel driven keyword framework. What you need to do is to create your own custom test script start/stop markers and then generate a report (preferably by using a custom XSL).
Sample test result
Notice that in the sample result, the tests are anything which starts with ▬▬ UC_. I've further divided each tests into various parts grouped under ●●● TD_. You then have to read the UFT generated results.xml and convert it into meaningful result. For example, I converted it into an Excel file.

send email automatically in Microsoft dynamics CRM

I have field in entity Quote called new_date_expiration (type = Date).
I want send email if new_date_expiration equals date system in Microsoft dynamics CRM automatically.
any ideas?
thanks in advance.
You can do this using the CRM Workflow Automation Tool combined with an on-demand workflow. The setup process is quite simple:
Create a new workflow in CRM (make sure the "run on demand" option is turned on) which generates and sends your email.
Create an advanced find query on your entity which defines the criteria of when you want the email to be sent. In your case it sounds like the condition would be something like Expiration Date [equals] Today.
Once you are satisfied with the advanced find query, copy of the source FetchXML for it.
Configure the CRM Workflow Automation Tool (instructions on how to do this are included in the download package) to run the workflow created in the first step using the FetchXML you just copied.
Set your server to run the tool run daily at, for example, 8 AM using Windows Task Scheduler.
Once you have this configured, everyday at the specified time the results of the FetchXML query will be pulled and the provided workflow will be run against it. This effectively accomplishes exactly what you want without a bunch of timeouts.

How to debug a lotus script agent inside a lotus script agent

I am debugging a lotus script agent using debug a lotus script. Agent is debugging fine but I have another lotus script agent inside that and my debugger is not going to that code line by line.Please help me how to do this.
Thanks in advance.
An agent, that is called in script from another agent runs in the background. These agents can not be debugged easily. If the called agent runs on the server, you can use the remote debugger, to debug that agent: you have to enable it in the server document, start the remote debug task, and enable remote debugging in the properties of the called agent. Then you have to be fast. You define a delay that each agent waits for the debugger to attach, before it really starts with its code. During this time, you have to start the remote debugger, open the database and select the agent to debug... Quite painful. And the normal Debugger has to be off and the agent you startet has to run in client background mode, otherwise you will not be able to switch to remote debugger...
If both agents are LotusScript and it is not needed, that they:
Run with different rights or
Run on different servers,
then there normally is no need for an agent calling another agent.
Use script- libraries and subs / functions instead, then you do not need two agents...
I recommend to you use a simple log in the second agent. You can use NotesLog (look at Domino Developer's Help), or you can write your own class as you need it.
In my apps, I use a LotusScript framework, written by me. In that framework, I have a CS_Log class, who connects to a LogAgents.nsf database and writes all in simple documents. Also, I have a CS_Document class, with a Dump method, who writes the full content of a document, for example.
The most times, debugging it's the best option. But in cases like this, I prefer to write all in a log.

Resources