• QTP read or write XML file


    'strNodePath = "/soapenv:Envelope/soapenv:Body/getProductsResponse/transaction/queryProducts/queryProduct/keys/keyProducts/keyProduct/attrProduct/attrs/attr"

    Function getNodeandValuefromXML(strXmlFilePath, strNodePath) 'passed

    Dim xmlDoc, xmlRoot,xmlChildren, xmlChild, childNodeName, childNodeValue
    Dim i, strNodeField, strNodeValue

    Set xmlDoc = XMLUtil.CreateXML()

    xmlDoc.LoadFile strXmlFilePath

    Set xmlRoot = xmlDoc.GetRootElement()

    Set xmlChildren = xmlDoc.ChildElementsByPath(strNodePath)

    intNodeCount = xmlChildren.Count()

    For i = 1 To xmlChildren.Count()

    Set childNodeName = xmlChildren.Item(i).ChildElementsByPath("name")

    strOneField = childNodeName.Item(1).Value

    Set childNodeValue = xmlChildren.Item(i).ChildElementsByPath("value")

    strOneValue = childNodeValue.Item(1).Value

    If strOneValue <>"" Then
    strNodeField = strNodeField&"$"&strOneField
    strNodeValue = strNodeValue&"$"&strOneValue

    End If


    Next

    strNodeField = mid(strNodeField, 2)
    strNodeValue = mid(strNodeValue, 2)

    'Combine field and value to a string

    strNodeFieldValue = strNodeField&"|"&strNodeValue


    Set strRoot = nothing
    Set xmlDoc = nothing

    getNodeandValuefromXML = strNodeFieldValue

    End Function

    Function createInputFile(strXmlFilePath, strNodePath, strNodeField, strNodeValue) 'passed

    Dim xmlDoc, xmlRoot,xmlChildren, xmlChild, child, updateChild
    Dim i, childText

    Set xmlDoc = XMLUtil.CreateXML()

    xmlDoc.LoadFile strXmlFilePath

    Set xmlRoot = xmlDoc.GetRootElement()

    'temp = xmlRoot.ElementName


    Set xmlChildren = xmlDoc.ChildElementsByPath(strNodePath)

    For i = 1 To xmlChildren.Count()

    Set child = xmlChildren.Item(i)
    childText = child.Value

    If strNodeField <> "productId" and strNodeField <> "qty" Then
    If trim(childText) = strNodeField Then

    Set updateChild = xmlChildren.Item(i).Parent.ChildElementsByPath("value")
    updateChild.Item(1).SetValue strNodeValue

    Exit For
    End If
    Else

    'Set updateChild = xmlChildren.Item(i).ChildElementsByPath("productId")
    child.SetValue strNodeValue


    End If


    Next

    xmlDoc.SaveFile strXmlFilePath

    Set strRoot = nothing
    Set xmlDoc = nothing
    End Function

  • 相关阅读:
    Kafka项目实战-用户日志上报实时统计之编码实践
    MapReduce-深度剖析
    Word 页码设置教程:如何删除封面和目录的目录?
    Pytorch autograd,backward详解
    Pytorch Sampler详解
    Pytorch并行计算:nn.parallel.replicate, scatter, gather, parallel_apply
    论文笔记系列-Auto-DeepLab:Hierarchical Neural Architecture Search for Semantic Image Segmentation
    Pytorch: parameters(),children(),modules(),named_*区别
    Broadcast,Scatter,Gather,Reduce,All-reduce分别是什么?
    如何理解正定矩阵和半正定矩阵
  • 原文地址:https://www.cnblogs.com/ellie-test/p/4516731.html
Copyright © 2020-2023  润新知