Are there plans to have reports that can be blessed and viewed without logging in to TestRail? I'm imagining a dashboard or view for developers who want to see test status but shouldn't need a license or account.
Thanks!
Are there plans to have reports that can be blessed and viewed without logging in to TestRail? I'm imagining a dashboard or view for developers who want to see test status but shouldn't need a license or account.
Thanks!
Hi,
i'm trying to set up a test plan.
How can i view or add the test suites ?
It should be in the sidebar, but i'cant see any.
What am i doing wrong ?
Thx
Marino
I know it's possible to customize the defect plugin to readout custom data from our defect logging software, but I had a question about the way TestRails looks up defect information.
Can I use information gathered by the defect plugin ( Any, but ours is OnTime ) in a UI Script or any sort of other instance? What I'm looking to do is check the defect readout for it's status "Open or Closed" and create a nice little UI Script printout that shows the user a table with the Open Defects only. If the defect is closed I'd simply ignore it.
I'm sure it's possible if I can access whatever method is pulling that defect data.
In 2.7 you describe a way to customize the Add Test Result screen, however I don't see any instructions on how to do so.
How can I create a UI script and target it at that screen, or the Push Defect screen?
Thanks
I just noticed an upgrade of my Hosted Trial instance of Testrail to version 3.0.0.3009
Where can I find a release note
Thanks
Now that TestRail 3.0 is out, we're excited to get it up and running but we have customizations we need to verify before we can launch it upon our users. Does our license provide for the ability to setup a sandbox environment for development & testing of customizations?
With version 3.0, does TestRail now support viewing defect status without mouseover? Is this now a piece of data that can be selected as a column (not just the defect ID)? Is this a data point that can be used in the new reporting section?
Specifically looking for the ability to map defect (JIRA) status to tests, group/filter/sort on it and display something like failed tests with defect status of resolved (for example). Is this functionality present in the stock reports, if not within the execution/definition interface of TestRail itself?
Either of these topics would go a long way towards this as well:
http://forum.gurock.com/topic/921
http://forum.gurock.com/topic/1251
We currently don't have a TestRail license, previously due to a few areas it was felt TestRail was lacking, but now it amounts to just this one item.
Our "required, but not yet there" list for TestRail is now:
Integration with JIRA for defect status without "mouseover" being required for retrieval (filter/sort/report alongside test information)
DONE IN 3.0 - Completed reporting interface, with ability to create custom reports and reasonable set of semi-flexible out of the box reports
DONE IN 3.0 - Completed API for automated tests and data retrieval/modification from outside systems
Features that are currently important/useful yet missing, though not required currently:
Better definition/documentation on "Forcast" predictions, how is determined, etc.
Access to Defect (JIRA) field data through UI Script
DONE IN 3.0 - Less Flash usage throughout, especially where navigation is concerned
DONE IN 3.0 - Standardized API type, inclusion in TestRil out of box, with documentation and user auth
DONE IN 3.0 - Custom naming of statuses (including system statuses)
DONE IN 3.0 - Out of the box "Daily Summary" type report (exec level, "pretty colors")
DONE IN 3.0 - Ability to email and/or print stats and aggregate information (report and/or within existing interface)
Is there any blog/guide on how to create your own custom reports in TestRail 3.0 ?
Ali
Is there any blog/guide on how to create your own custom reports in TestRail 3.0 ?
Ali
Testrails 3.0 looks fantastic in terms of reporting, so I don't want to sound too harsh by putting in a request for a feature. Can't wait to get my hands on 3.0. But with that said, I'd like to request a feature with regards to Test Results and their coinciding Defect Plugin.
I saw someone ask a question similar to this, but figured I'd specify some circumstances so that preloading every defect wouldn't be neccessary to save huge amounts of processing time.
On the instance that a defect plugin is enabled and a result is marked as Failed, have the defect plugin go to the defect ID and scrape out the Status (Open/Closed/Whatever) defect information string. Then add that string into a new table category under the results section titled "Defect Status". Shouldn't be too bad since you don't have to preload everything, it'd be better than hovering over just to see if it's closed or open.
With that said, is this within the realms of something I could customize with a custom defect plugin? I'm not sure if the custom defect plugin features can give the results page any information or if they are :hover only.
And again, fantastic job on Testrails 3.0. It has a lot of the UI scripts I was customizing mine with implemented as official features
I'm lucky that I found this web post, precisely the correct data that I was looking for!
- visit also... <a href=http://dziecko-blog.pl>wózki dziecięce</a> <a href=http://dziecko-blog.pl>wozki dzieciece</a>, by wozkiennsourenseon.
I am trying to look into forecasting feature of TestRail and I have a questions.
1. Is forecasting based on test case estimate or based on elapsed time field or both? I can definitely ask the team to bulk update estimate filed. However getting the team to use elapsed as they run test will take some time.
2. does forecasting take into account the resources ?
Thanks
Ali
Hi,
quick one is it possible to change Elapsed field when entering test result to mandatory for all testers ?
At the moment its not mandatory and some testers wont fill it.
Thanks,
Viljam
Hi,
I'm trying to migrate our scripts from miniapi to new v2 API.
I've found 2 problems so far.
1)
In miniapi we use inactive user to authorization (we got this suggestion from your support)
Now I can only access v2 API with real user and real authorization.
But this is not accepted solution.
How should we access v2 API without use real user? (we cannot create domain user for automatic tests)
2)
I got 'HTTP Error 400: Bad Request' always when I'm trying to send POST.
I use python scripts which work well for miniapi e.g.:
mydata=[('name', 'name')]
data=urllib.urlencode(mydata)
req = urllib2.Request(url=url, data=data, headers=properties.headerv2)
base64string = base64.encodestring('%s:%s' % (properties.username, properties.password)).replace('\n', '')
req.add_header("Authorization", "Basic %s" % base64string)
response = urllib2.urlopen(req)
Testail log returns:
[BadRequestException]
---
Details: <missing>
File: /var/www/testrail/sys/helpers/ex.php
Line: 29
Status Code: 500
Host: ***********
Uri: /index.php?/api/v2/add_suite/3/ (POST)
---
Browser: Python-urllib/2.7
PHP: 5.3.10-1ubuntu3.4
Server: Linux 3.2.0-29-generic #46-Ubuntu SMP Fri Jul 27 17:03:23 UTC 2012 x86_64
---
Trace:
at ex::raise (ex.php:29)
at ex::raise (controller.php:184)
at Controller->_validate_get_input (controller.php:130)
at Controller->_validate (v2.php:1103)
at V2_controller->add_suite (controller.php:106)
at Controller->_invoke_web (controller.php:74)
at Controller->_invoke (gizmo.php:101)
at require_once (index.php:106)
Project with id=3 exists.
This code works well for miniapi.
I have no problem with GET methods.
Thx for help.
Regards
I have added a required custom field (SessionID) which is filled in for each test result. We would like to export the results of a completed test run to include this field which can then be attached to its relevant ticket for signoff.
Is there a manner this can be achieved currently in the system?
I have integrated Bugzilla as our defect tracker with TestRail. When adding a Test Result, and attempting to push the defect to Bugzilla, I receive the following message:
Plugin "Bugzilla" returned an error: You must select/enter a OS. (faultCode: 50)
There is no field (in TestRail) where an OS can be specified.
How can I resolve this issue?
Hey guys,
I'm trying to create a Test Plan or a Test Run, and I'm getting an error when trying to select individual test cases for the Run.
My test suites are quite large. This one has over 9000 test cases inside of it. When I try to view test cases to select for the run, it gets an Error message without any real clue as to why it's having a problem. I'm guessing it's due to the size of the test suite, but that's not going to be something I can change.
When trying to select cases, it loads for a few seconds and then an error pops up declaring: " An error occurred during the last operation. Please try again or refresh the current page.". This occurs for both test plans and test runs.
Is this fixable? The size of my test suite cannot be altered, as we have many test suites that are 8000+ files.
Thanks,
Zerhynn
Today, the Spurs, Duncan's defensive and offensive decline is still missing, Parker's speed is still as sports in general, Ginobili Yao Dao is still sharp, the Spurs still gleaming sword belt, or that the martial arts warrior. The Rockets are now gradually enhanced martial arts, estimated that soon will overtake the Spurs, a generation master.
Rockets and Spurs half past seven p.m. start at three o'clock, the Spurs players had to Toyota Center started training. By this time, Nfl jerseys cheap,the Rockets players have not come together too! Zhou Wu compared the two teams overall attitude towards training, began to realize why the Spurs will be stronger.
Although the Rockets have trained hard worker, but only a few people focused, a lot of players training or not so positive. Like now, the Spurs players in attendance, started training, while the Rockets here Mike James Snyder, Alstom, who are still without it anyway it up!
Zhou Wu saw Tim Duncan, Tony Parker saw, also saw Yao Dao Ginobili. For the three components of Megatron Union Troika, Zhou Wu had given too much attention. First thing to say is that Tim Duncan it.
Tim Duncan (April 25, 1976 -) was born in the U.S. Virgin Islands St. Croix (St. Croix, US Virgin Islands), American professional basketball player, the functional power forward and center, played for the NBA San Antonio Spurs team. Nike elite jerseys,Tim Duncan is the 1997 NBA draft pick, and has won four NBA championships, three-time NBA Finals MVP. He was the 1998 NBA Rookie of the Year, has won two NBA regular season MVP.
1996-97 season, as "Admiral" David - Robinson's season, the Spurs played the worst season in franchise history. But they are a blessing in disguise in the 1997 NBA Draft has been one of the best power forward in the history of Tim - Tim Duncan, the Spurs since then Duncan began his reign and his spurs.
Duncan rookie season played in 82 games, he handy averaging 21.1 points, 11.9 rebounds, 2.7 assists, 2.5 blocks of data has won the season's NBA Rookie of the Year. Coupled with Robinson's comeback, Jerseys from china,the Spurs have suddenly increased to record 36 wins, to 56 wins and 26 losses. Eventually lost to Utah in the Western Conference semifinals Shuangsha jazz then perhaps do not realize that there is a legend already begun.
In addition to the 1998-99 lockout-shortened season, Duncan career without any one season win total of less than 50 games, which is almost a miracle. After joining in Duncan, the Spurs are stable decade was terrible, but stability is the biggest feature is Duncan. In addition to the 2010-2011 season, the Duncan entered the league not missed any year after the All-NBA and NBA All-Defensive team, and this is unique.
Duncan entered the league in the second year, due to labor disputes, has shrunk to 50 regular season games. Start at the beginning of the Spurs record of only six wins and 8 losses, when the shelling Spurs coach Gregg Popovich media certainly did not think they would get that year's championship. Duncan and Robinson stand out in open support of the coach, the Spurs played 31 wins and 5 losses brilliant record, cheap nhl jerseys wholesale,and ultimately won the Houqiao Dan times the first championship.
Duncan is ready to flex its muscles, another a dominant giant blocking his footsteps, he is then played for the Lakers "big sharks" Shaquille - O'Neal. 2001 Western Conference finals, the Spurs in front of the Lakers to be naked, was swept out to 4-0. The following 2001-02 season, Duncan work hard to get the MVP trophy, but this is just to let him face the Lakers in the Western Conference finals, when just win the game.
For two consecutive years to face the Lakers failed and did not let Duncan stopped his second consecutive year in 2003, got the MVP trophy, and finally put the Lakers Shaquille O'Neal and his evicted from the playoffs. Lakers Spurs crossed this off again got the long-awaited championship, this year is around Duncan Robinson last year.
Perhaps it was the presence of the Lakers, Nike elite jerseys,Spurs dynasty before allowing the fineness inadequate. Since the existence of similar strength Lakers Spurs have not been able to taste the taste of peat, in 2004 they once again fell to the Lakers feet. But with the collapse of the Lakers dynasty, Duncan also led the team in 2005 and 2007, won two NBA championships.
Duncan, the Spurs in 14 years, the Spurs won a total of four times the championship, but they always make themselves remain at a championship contenders. As of April 24, 2012, at which time the 1111 campaign for the Spurs game (which starts 1109) 39,366 minutes, averaging 35.4 minutes playing time, the average rate of 50.7 percent shooting, 17.7 percent three-point shooting, free throw percentage 68.8%, Cheap authentic jerseys,with a total score of 22,558 points, 12,533 rebounds (of which 3292 offensive rebounds, rebounds after 9241), assists 3428 times, 822 steals, blocks 2469, 2853 times turnovers, fouls 2763 times.
Now Duncan has 36 years ,10-11 season, he averaged data finally has greatly diminished, only get 13.4 points, 8.9 rebounds, he is no longer the dominant Giants Stadium. By grizzly black eight, maybe Duncan finally feel powerless, but the moment the whistle stone or with the Grizzlies players hugged, filling the master's touch, and finally leave his head down without saying anything, belonging to his era, probably gone. But we also have reason to believe that Love gone, no longer young, when he was still stone with his efforts to prove their ability and domineering.
Duncan proficient in most insider attack techniques, which is mainly reflected in the basket ball hit the back, flank, or shooting the ball after the break, especially in the left and right wings of 45 ° bank shot was no solution. Good offensive rebounds to Duncan's second offensive capability is also very good, because the ability to dribble is a superior power forwards, so there are some fast-break ability, court vision, NFL jerseys authentic,the first time to put the ball in defense weak side teammates hands, the Spurs inside-out offensive system in the core, as offensive dual role of initiator and finisher.
Duncan's offensive shortcomings are mainly throws instability, long shot ability, career free throw percentage of 68% although there are not as low in the paint, but Duncan is indeed not high, so the other coaches feel bad in Duncan when it dared to Duncan endless foul. As for Duncan's pitching ability, which is compared to Dirk Nowitzki and David West pitcher-type power forward such terms.
Up to now, Duncan is the NBA All-Defensive team selected the best players in the highest number of players, inside a natural barrier, excellent team defensive player, team defense pillar, defensive awareness class, defense technology class, led the players can defend.
Duncan largely from his strong defensive attack on the opponent means of research, Coach outlet online, determine in advance the opponent's offensive line, in order to take effective blocking, Duncan's defensive style that makes him Amare Stoudemire, Ken Jan Martin kind of face the basket power forward's nemesis, because Duncan can always stay ahead of the other breakthroughs line blocking, which allowed not find offensive line.
Duncan nickname "stone", the reason is the presence of the above expressionless, and psychological quality is quite good, you can never destroy Duncan psychological defense, when you dunk Duncan after scoring just being aftertaste when Duncan might have played a 2 +1, this is Tim Duncan, always remain unbiased, just how the ball into the front or how to guard each other, and not because of each other's emotional or provocative affected.
Really big heart players, the key moment is not soft, of course, Duncan is not the role of a critical moment to cast the number of lore, Nfl jerseys wholesale, but can handle the ball the most calm, we often see Manu lore of the play, should also see Duncan screens before or after the ball to attract double teams.
Duncan Almighty, is rare in the league, so Zhou Wu for Duncan particularly admire. Of course, this is only the strongest troika of a ring. Tony Parker is this triumvirate's an important part, is that the carriages of the engine. He was born May 17, 1982 in France.
No. 9 jersey number is, the position is point guard. 2001 was elected to the NBA, Jiarushengan Antonio Spurs. In 2006 for the first time to play the All-Star Game. Has an excellent ability to cut and mid-range jumper. 2003, 2005 and 2007 to help the team win the championship.
He was in 2001 the first round 28th overall Jiarushengan Antonio Spurs. Parker is the league's most prolific defender breakthrough, wholesale nfl jerseys,but also the highest rate of the basket hit one of the players. He broke little later dumped in 2007 Finals played a significant role. In recent years, the gradual strengthening of Parker's outside shooting has just joined the league from the nerve knife guard gradually transformed into the sophistication of neutral shooting hand.
As a point guard, Parker can be a good grasp of the situation in the field, even though the data is not very rosy assists, but he is the best offensive team championship sponsors. Parker's defense has always been not very good, although the pace fast, but on the strength of this tonnage difficult to guard Deron contend.
Zhou Wu for Duncan compare admire, for Parker, while not admirable, still prefer this person. Parker actually fire in the hearts of most of the time is not he win a championship, Nike elite nfl jerseys,but he and the United States to marry actress scandal occurred after this period of time of divorce. People's gossip of the heart that is quite powerful.
After two minds filter information, Zhou Wu could not bring myself not to think Ginobili. This comes from a country Yaodao football heyday, but the master of martial arts in a great alternative. Its unique "fairy" (Zhou Wu title) footwork has really demon to the extreme. Demon to almost no one can defend the living, step three twisted places went into the basket, step three dangling taken to put the basketball hoop, strange to the extreme.
Manu Ginobili (28 July 1977 -) was born in Bahia Blanca, Argentina (Bahia Blanca, Argentina), the Argentine professional basketball player who point guard, played for the NBA San Antonio Spurs. He has the ability to break through the top league, the first step is not very fast, but can rely on teammates cover varied rhythms and find good cut line, second to none in the league feel layup, layup often have incredible performances , Cheap Elite jerseys, highly ornamental. Breakthrough in the field of vision and passing ability is also a considerable level in Tim - Tim Duncan after the end of organized team often through sudden attack.
His ability to outside third sustained progress in the NBA ,04-05 season reached 37.6% of the regular season, playoffs 39.2 percent shooter level, 3 points shot mainly through unguarded shot form, similar to Tracy - Tracy McGrady shot style dry pull onions basically no. His breakthrough compared to Superman, and his ability to cast criticized basically no ability to catch and shoot, dribble jumper trip also rare in the cast shot.
Perfect performance in the team offensively, good vision and awareness of the judgment of the ball, often meat inside walls Bo offensive rebounds, not blind disrupt play, know their mission and positioning, can be very good to complete the pedicle Tim - Tim Duncan post game and perimeter shooter help. Cheap nfl jerseys,
Psychological quality is very good, his free throws are the most accurate Spurs players, and can be a critical moment in the game to play an important role at both ends, often staged lore show.
In defense, he has a flexible pace, keen judgment and impeccable pitch attitude. When he first entered the league like gambling style defense, with the establishment in a prominent ability to steal, so the effect is not very good defensively. Then gradually get rid of the habit of this defense to Bruce - Bowen's personal defense defensive way to move closer.