3

是否可以从 调用网络服务UIAutomation

在此网页http://www.geonames.org/export/ajax-postalcode-autocomplete.html 可以输入国家和邮政编码,并获得以下回复

http://api.geonames.org/postalCodeLookupJSON?postalcode=2830&country=DK&username=demo

 {"postalcodes":[{"postalcode":"2830","countryCode":"DK","lng":12.4666667,"placeName":"Virum","lat":55.8}]}

JSON我对此很陌生,有没有办法可以用参数调用服务或自己构建url并调用它并得到响应UIAutomation

4

1 回答 1

0

你可以这样做:

var result = target.host().performTaskWithPathArgumentsTimeout("/usr/bin/curl", ["http://yoururl"], 30);
var json = JSON.parse(result.stdout)
于 2015-06-24T17:37:47.043 回答