gpt4 book ai didi

JMeter Xpath2 extractor id 匹配多个条件

转载 作者:行者123 更新时间:2023-12-04 01:10:24 26 4
gpt4 key购买 nike

下面是示例 XML 片段,我试图从中筛选出符合以下两个条件的文章的 ID。目前,我可以在下面的表达式的帮助下为个别情况提取 ID

  1. 获取可用文章,Xpath2 表达式 = (//*//*//*//*[starts-with(state,'Avaialable')])/id
  2. 获取以 'A' 开头的文章名称 () , Xpath2 expression = (//*//*//*//*[starts-with(name,'A')])/id

我想将这些条件合并到一个表达式中,并且愿意

fetch id's of Articles where Name starts with 'A' AND articles whichare Available

.尝试了多种方法但未按预期工作。

虚拟 XML 片段:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns3:GetArtclesResponse
xmlns:ns2="XXX"
xmlns:ns4="XXX"
xmlns:ns3="XXX"
xmlns:ns6="XXX"
xmlns:ns5="XXX"
xmlns:ns8="XXX"
xmlns:ns7="XXX"
xmlns:ns13="XXX"
xmlns:ns9="XXX"
xmlns:ns12="XXX"
xmlns:ns11="XXX">
<serverTimeInfo timezone="+00:00" timestamp="1606409365419"/>
<items>
<count>2</count>
<articles>
<article>
<name>ABC</name>
<id>1234</id>
<state>Avaialable</state>
</article>
<article>
<name>XYZ</name>
<id>3456</id>
<state>Avaialable_Conditional</state>
</article>
</articles>
</items>
</ns3:GetArtclesResponse>

最佳答案

您可以使用 来同时检查:

(//*//*//*//*[starts-with(state,'Avaialable') and starts-with(name,'A')])/id

关于JMeter Xpath2 extractor id 匹配多个条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65023048/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com