我们正在评估VSTS作为需求/测试管理平台的过程。
是否可以在树形结构中查看需求(或一般的工作项目)?
我已经尝试过,但是找不到任何方法。
欢呼
答案 0 :(得分:2)
如果您是将子工作项目映射到父母并以树状结构显示工作项目,则可以尝试以下方式:
在待办事项中:
您可以将Option Explicit
Public Sub test()
Dim html As HTMLDocument
Set html = New HTMLDocument
With CreateObject("WINHTTP.WinHTTPRequest.5.1")
.Open "GET", "http://www.someurl.com", False
.send
html.body.innerHTML = .responseText
End With
Dim aNodeList As Object, iItem As Long
Set aNodeList = html.querySelectorAll("#images img[src^='img/']")
With ActiveSheet
For iItem = 0 To aNodeList.Length - 1
.Cells(iItem + 1, 1) = aNodeList.item(iItem).innerText
'.Cells(iItem + 1, 1) = aNodeList(iItem).innerText '<== or potentially this syntax
Next iItem
End With
End Sub
设置为Parents
,然后单击展开的Show
图标以
展开层次结构的+
(单击两次以展开两个
级别)。参见.querySelectorAll
在查询中:
使用树查询(one level
)查看工作项的多层嵌套列表。
参见Show parents and expand the tree hierarchy