3

文档提到 :XML、:JSON 和 :HTML,但我有一个返回纯文本的 URL。我想写

global {
  datasource tests_executed:TEXT <- "http://saucelabs.com/rest/v1/info/counter"
}
rule how_many_tests {
  pre {
    count = datasource:tests_executed("");
    msg = "Executed #{count} tests.";
  }
  notify("Saucelabs",msg) with sticky=true;
}

:XML、:JSON 和 :HTML 是数据源唯一有效的格式吗?

4

1 回答 1

1

XML、JSON 和 HTML 是当前唯一有效的格式,但如果 Kynetx 引擎无法将数据源解析为该格式,它会将其视为字符串。

于 2011-04-28T14:36:22.857 回答