jira

有哪些比较好的测试用例管理工具?

断了今生、忘了曾经 提交于 2021-02-20 13:47:49
顾翔老师的《软件测试技术实战设计、工具及管理》网上购买地址: https://item.jd.com/34295655089.html 《基于Django的电子商务网站》网上购买地址: https://item.jd.com/12082665.html 店铺二维码: 来源:http://www.51testing.com   公司 测试 团队扩招时候做过一次 测试管理 工具选型,调研了几种工具,涵盖国内外厂商开源和商用版,下面一一列举各工具特性和优缺点。   首先对各工具主要功能汇总如下表:   对以上工具优缺点简要评价如下:    TestRail    优点   具有三种 测试用例 管理方式:普通,基线(类似Git分支),多套件;根据创建的测试场景执行测试,例如可自定义 浏览器 、 操作系统 等;可集成众多缺陷追踪工具,如JIRA,GitHub,YouTrack等;提供Saas在线模式和独立部署版本;开放API。    缺点   三种用例组织方式中使用较复杂(仅普通方式较好理解和使用);交互设计较旧,10年前 技术 ;SaaS版在国内访问速度很慢;价格较高(SaaS版$30/人/月,独立部署版本$290/人/年)。    TestLink    优点   开源免费具有一定的扩展性;   可集成众多缺陷追踪工具,如Jira、Redmine等;   提供 需求管理 ;  

Does the JIRA REST API support querying a list of labels?

岁酱吖の 提交于 2021-02-20 04:42:40
问题 I see the is the ability to get all components of a project by doing /project/[projectkey]/components but I don't see any capability or documentation on how to get the list of labels that are available for a project (something like: /project/[projectkey]/labels Does the JIRA REST API support querying the list of labels available on a project? 回答1: Just to clarify, labels (at least the built-in JIRA ones) are global entities so they can be attached to any Issue in any Project. As to your

How to create an internal comment on a jira issue using the JIRA Cloud REST API

Deadly 提交于 2021-02-20 04:11:38
问题 It's really hard to find a clear answer about how to create a comment on an issue which is internal only. 回答1: The JIRA Cloud REST API Documentation specifies the following schema for setting properties on comments when creating or updating a comment on an incident https://docs.atlassian.com/jira/REST/cloud/#api/2/issue/{issueIdOrKey}/comment-addComment "properties": { "type": "array", "items": { "title": "Entity Property", "type": "object", "properties": { "key": { "type": "string" }, "value

Is there a way to automatically change epic state to done when all the linked stories and tasks are complete

时间秒杀一切 提交于 2021-02-18 16:41:18
问题 I am new to JIRA and Kanban. I was expecting that when I create an epic and link some stories and tasks to it. The status of the epic will automatically change (e.g. to done) when all the stories and tasks linked to it are done. But it seems this is not the case. I can move the epic from the Backlog to the Done column even when its linked tasks and stories are still in the backlog. Is there a way to make JIRA prevent that from happening? 回答1: I have been working on something similar. My

Handling bugs raised by customers in TFS

时光总嘲笑我的痴心妄想 提交于 2021-02-18 05:39:11
问题 I'm part of a team developing ASP.Net applications using Scrum. We currently use TFS for almost all aspects of our project management, source control, testing, and bug tracking. However, there's a gap when it comes to customer-raised bugs. Bugs found internally are easy to add to TFS allowing us to link changesets to actual bugs. When bugs are found by customers though, we find ourselves using an externally-facing bug tracking system (JIRA at the moment) and manually entering the same bug in

Handling bugs raised by customers in TFS

依然范特西╮ 提交于 2021-02-18 05:38:08
问题 I'm part of a team developing ASP.Net applications using Scrum. We currently use TFS for almost all aspects of our project management, source control, testing, and bug tracking. However, there's a gap when it comes to customer-raised bugs. Bugs found internally are easy to add to TFS allowing us to link changesets to actual bugs. When bugs are found by customers though, we find ourselves using an externally-facing bug tracking system (JIRA at the moment) and manually entering the same bug in

测试开发这一年

心不动则不痛 提交于 2021-02-17 09:42:40
上一期我聊到2018年是我做测试开发的一年,然后,有不少测试同学问测试开发做具体在做什么?根据近一年的工作,再次聊聊这个岗位。 我以前的文章曾经对测试开发做过简单的一个划分: 测试工具、测试平台开发:这类开发工作主要服务于“测试”相关业务,本质与开发公司其它产品业务并没有什么不同。 自动化测试开发:这类工作主要围绕公司的产品开发自动化测试脚本,主要包括 UI自动化测试、接口自动化测试和单元测试等。 测试脚本的开发:这类工作主要是服务于一般测试工作,提高测试效率,例如通过测试脚本生成测试数据、抓取页面数据进行对比等。 通过这一年团队的发展和自我定位,我对测试开发有了不同的看法。 大多数测试人员的发展轨迹是这样(包含1、2、3): 1、软件测试工程师: 主要以功能测试为主。 2、自动化测试工程师/性能测试工程师/高级测试工程师: 我认为作为一个比较有经验的测试,掌握一定的编程技术、自动化测试技术、性能测试工具几乎是必备的。所以,其实,拥有公司title为“自动化测试工程师”和“性能测试工程师”的测试人员并不多。 自动化和性能测试是多年来一直学习的技术,但少有测试能够“精通”,其实,我觉得本质上原因还是大家编程能力太弱(我没说测试人员普遍编程能力弱就一定比开发low),又妄想通过学习一两个“先进”的测试工具来弥补这两块不足,但编程能力弱真的影响你对自动化和性能的理解深度。 例如

CSS class names in Atlassian's Jira are obfuscated [closed]

可紊 提交于 2021-02-11 14:36:34
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 1 year ago . Improve this question I noticed in Jira, they have obfuscated the CSS classes, so they look odd and they are different on every page refresh: <div class="sc-dYaWWc dJrjAK"> <div class="sc-iLVaha hfGHeD"> <div class="sc-geAxOV krrXnm"> <div class="sc-bJT2cE bPFEwh"> <div class=

Unable to PUT comment to Jira with Javascript using REST API

大城市里の小女人 提交于 2021-02-11 13:11:26
问题 I'm trying to update a jira with a new comment through JavaScript. I can do this all day long with cURL but using javascript is proving more challenging. I was able to call the Jira API for a GET request for a key so I know my headers/authentication is working. Problem is my data. I don't see what I'm doing wrong to format the JSON string with the comment. Here's what I have so far: $.ajax({ type: "PUT", url: "https://jira.domain.com/rest/api/2/issue/TEST-113", dataType: "json", headers: {

Unable to PUT comment to Jira with Javascript using REST API

混江龙づ霸主 提交于 2021-02-11 13:05:34
问题 I'm trying to update a jira with a new comment through JavaScript. I can do this all day long with cURL but using javascript is proving more challenging. I was able to call the Jira API for a GET request for a key so I know my headers/authentication is working. Problem is my data. I don't see what I'm doing wrong to format the JSON string with the comment. Here's what I have so far: $.ajax({ type: "PUT", url: "https://jira.domain.com/rest/api/2/issue/TEST-113", dataType: "json", headers: {