Hi All, We have a question in regarding to custom timer in Silk Performer. We have two different test scripts in our project and will run together. We like to time how much time it takes to open up a Task in our product. Script 1 will open the task from a report page. Script 2 will open the task from the search result page. The navigation path is different in both scripts, but the landing page "Edit Task" page is the same. We are not timing the whole navigation flow. If we just time it from the moment we click on the Task Name, till the Edit page is opened, and this operation is same in both scripts, should we have a timer with same name in both scripts. What is the good practice here? Our current scripts. Script 1: MeasureStart("ClickTaskIDLink[1]"); WebPageLink("Javascript Redirection in page My Tasks: Assigned To Me", "Task Search: Edit Task"); MeasureStop("ClickTaskIDLink[1]"); Script 2: MeasureStart("ClickTaskIDLink[1]_Clerk"); WebPageLink("Javascript Redirection in page Task Search (#1)", "Task Search: Edit Task", 4); MeasureStop("ClickTaskIDLink[1]_Clerk"); What are the benefits for having a timer with same name in different script and what are the disadvantages for it?
↧