我有一个.ps1
文件,其中包含4个函数。我不知道如何调用函数或运行该脚本。我需要所有4个函数一个接一个地运行,我相信我已经尝试了所有可能的方法来执行powershell
文件,但到目前为止还没有取得任何成功。有人可以帮我解决如何将这些功能称为运行。
答案 0 :(得分:0)
如果我没有正确使用,您可以点源文件以使您的功能可用。
public string update(){
String url = GeneralProps.getProperty("XMLUpdateURL")+testCaseID+"/block/include/data/no";
ArrayList<String> tempArray = HttpHelper.sendAuthGetRequest(url, GeneralProps.getProperty("Username"), GeneralProps.getProperty("Password"));
Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(new InputSource(new StringReader(tempArray.get(1).toString())));
XPathExpression expr = xpath.compile("//Step["+ stepNo + "]/"+ nodeName +"/text()");
Object result = expr.evaluate(doc, XPathConstants.NODESET);
NodeList nodes = (NodeList) result;
for (int i = 0; i < nodes.getLength(); i++) {
System.out.println(nodes.item(i).getNodeValue());
nodes.item(i).setNodeValue(newNodeValue);
System.out.println(nodes.item(i).getNodeValue());
}
return doc;
}