Quantcast
Channel: All Quality Center / ALM Practitioners Forum posts
Viewing all 14708 articles
Browse latest View live

Re: Can anyone think of a better way to do this?

$
0
0

I went with the field in the end. Mainly because the "update selected" function is available in the test plan and the users can bulk update.

 

Thanks all,


Multiple test runs not possible in ALM 12.50

$
0
0

Hi guys, we are trying to run different test-sets at the same time on different machines (example: first test-set, 10 tests, Machine A -- second test-set, 5 tests, Machine B).

Unfortunately, when we setup the slots to automatically run at night) one of the two gets aborted because is not possible to run multiple test-sets at the same time (slot is busy).

Now, we CAN'T run all the tests on the same slot on the different machines because we need to have two different e-mails with the results of the two test-sets on the two different machines separated.

Is there a way to setup slots to run different test-sets at the same time automatically?
(NOTE: both test-sets last for, at least, 8 hours, and need to run at night, only moment when we can run those tests without disturbing someone else working on the systems).

 

Thank you for any help

Quick one. Project name?

$
0
0

I want to get the name of the current domain and project in SQL. Anyone?

COPY URL in ALM, how to get this id of test case run from query builder?

$
0
0

Hello,

On copying test case run URL it ends with EntityType=ITestSet&EntityID=5555, how can I get from ALM DB by running Query in Analysis View?

Thank you in advance,

Dima

Re: Can anyone think of a better way to do this?

$
0
0

That is exactly what we have, as part of our standard fields, we have a "Test Category" field (UDF that we included in our template) where users can identify what type of test it is whether it is a 'Performance' type of test or 'Regression' type or 'New Functionality' type etc.

HP ALM v11.0 > How to restrict users to map Test Plan Root folder with any requirement

$
0
0

Dear,

Can someone please help on how with workflow customization we can restrict users to map Test Plan Root folder with any particular requirement.  Any advice?

 

Thanks,

Tanmay

Re: Best practice question.

$
0
0

 

In the Test Plan, we have a Test Category field which is a grouping mechanism for tests, allows users to show release efforts break down by the different activities such as Regression, Non-core Regression (one cycle, off cycle), Training, ShakeOut, Compliance, Audit, SOX

Then there is a Test Phase field in the Test Set recordwhich identifies the phase of testing being executed (e.g. System, IST, UAT, etc.).  Though this field can be added to the "Release" record instead.  But not everyone in our company uses the Management \ Release module, so we needed a way that we can still capture test execution in each of the test phases that is why it is added on the Test Set level.

Then when we create the Release and Cycles, we name the cycle with a naming convention that indicates the test phase.  For instance,

Release ABC

IST Cycle 1

IST Cycle 2

UAT Cycle 1

UAT Cycle 1

So that we know which tests are being executed in which phase which helps in reporting.

 

Re: Help with SQL Query - Total Passed/Failed count of steps in runs

$
0
0

any help with this report pls ? 


Re: Can anyone think of a better way to do this?

$
0
0

I went with the field in the end. Mainly because the "update selected" function is available in the test plan and the users can bulk update.

 

Thanks all,

Multiple test runs not possible in ALM 12.50

$
0
0

Hi guys, we are trying to run different test-sets at the same time on different machines (example: first test-set, 10 tests, Machine A -- second test-set, 5 tests, Machine B).

Unfortunately, when we setup the slots to automatically run at night) one of the two gets aborted because is not possible to run multiple test-sets at the same time (slot is busy).

Now, we CAN'T run all the tests on the same slot on the different machines because we need to have two different e-mails with the results of the two test-sets on the two different machines separated.

Is there a way to setup slots to run different test-sets at the same time automatically?
(NOTE: both test-sets last for, at least, 8 hours, and need to run at night, only moment when we can run those tests without disturbing someone else working on the systems).

 

Thank you for any help

Quick one. Project name?

$
0
0

I want to get the name of the current domain and project in SQL. Anyone?

COPY URL in ALM, how to get this id of test case run from query builder?

$
0
0

Hello,

On copying test case run URL it ends with EntityType=ITestSet&EntityID=5555, how can I get from ALM DB by running Query in Analysis View?

Thank you in advance,

Dima

Re: Can anyone think of a better way to do this?

$
0
0

That is exactly what we have, as part of our standard fields, we have a "Test Category" field (UDF that we included in our template) where users can identify what type of test it is whether it is a 'Performance' type of test or 'Regression' type or 'New Functionality' type etc.

HP ALM v11.0 > How to restrict users to map Test Plan Root folder with any requirement

$
0
0

Dear,

Can someone please help on how with workflow customization we can restrict users to map Test Plan Root folder with any particular requirement.  Any advice?

 

Thanks,

Tanmay

Re: Best practice question.

$
0
0

 

In the Test Plan, we have a Test Category field which is a grouping mechanism for tests, allows users to show release efforts break down by the different activities such as Regression, Non-core Regression (one cycle, off cycle), Training, ShakeOut, Compliance, Audit, SOX

Then there is a Test Phase field in the Test Set recordwhich identifies the phase of testing being executed (e.g. System, IST, UAT, etc.).  Though this field can be added to the "Release" record instead.  But not everyone in our company uses the Management \ Release module, so we needed a way that we can still capture test execution in each of the test phases that is why it is added on the Test Set level.

Then when we create the Release and Cycles, we name the cycle with a naming convention that indicates the test phase.  For instance,

Release ABC

IST Cycle 1

IST Cycle 2

UAT Cycle 1

UAT Cycle 1

So that we know which tests are being executed in which phase which helps in reporting.

 


Count of test cases linked to a defect and defects with no linked test cases

$
0
0

Hi,

I want to extract a report from a specific projetct that shows the number of test cases that are linked to any defects, and also defects that doesn´t have any test cases linked(exploratory testing). So i tried this:

SELECT bg_responsible    AS "Assigned To",
       bg_bug_id                    AS "Defect ID",
       bg_user_01                  AS "Defeito na Fase",
       bg_detected_by          AS "Detected By",
       rel_name                     AS "Detected in Release",
       bg_detection_date     AS "Detected On Date",
       bg_vts            AS "Modified",
       bg_user_02        AS "Motivo",
       bg_status         AS "Status",
       Count(ln_link_id) AS "Testes Impactados",
       bg_summary        AS "Summary"
FROM   bug,
       releases,
       link
WHERE  bg_bug_id = ln_bug_id
       AND rel_name = 'PRJ-39083 Módulo Multipag'
       AND bg_detected_by IN ( 'Mauricio.bezzi', 'William.miguel',
                               'david.campos',
                               'wendell.amaral',
                               'matheus.manfio', 'ingrid.muniz' )
       AND bg_status NOT IN ( 'Closed', 'Fixed', 'Resolved', 'Improcedente' )
GROUP  BY bg_responsible,
          bg_bug_id,
          bg_user_01,
          bg_detected_by,
          bg_project,
          bg_detection_date,
          bg_vts,
          bg_user_02,
          bg_status,
          bg_summary,
          rel_name
ORDER  BY Count(ln_link_id) DESC 

The problem is that this query only returns defects with linked entries,  if I remove "bg_bug_id = ln_bug_id" it returns the correct result but with the wrong linked defect count.


All help is appreciated!

Thanks

PS: sorry for my bad English.

Wiindows 7

$
0
0

Hi All

I am new to HP centre.

Please where can I download HP quality centre 10 or 11 that is compatibel with windows 7 professional?

 

Re: Quick one. Project name?

$
0
0

Please provide more information about your scenario. You said the "current domain and project". How are you connected to this project?

Re: Wiindows 7

$
0
0

HPE makes only the latest version of the product available for trial download. The others are available only if you have a support contract with HPE

Re: Making macro's with Sprinter

$
0
0

Hi All,

I am using Sprinter for the first time. I have installed Sprinter 12.53, ALM 12.20 , IE 11 and UFT 12.52 in the machine.Am able to create a test and record the actions as the steps in ALM and able to pull the testcase in the Run mode.But getting error as "Run session cannot be started - Unspecified Error" while executing test case.

Have found following exceptions in the Sprinter Log file :

 

  • The remote server returned an error: (407) Proxy Authentication Required.
  • Root element is missing.
  • Exception: HP.MirrorTesting.Common.Exceptions.MnrUnspecifiedSystemException: Exception of type 'HP.MirrorTesting.Common.Exceptions.MnrUnspecifiedSystemException' was thrown.
  • InnerException#1: System.Collections.Generic.KeyNotFoundException (source: 'mscorlib'): The given key was not present in the dictionary.

 

 

Kindly let us know whether we are missing something or have to change any confirguration settings.

Note: Have tried with notepad application also. But No luck.

Thanks in Advance.

Viewing all 14708 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>