1 | public void configure(TestElement el) {↵ | | |
|
2 | super.configure(el);↵ | | |
|
3 | SoapSampler sampler = (SoapSampler) el;↵ | | |
|
4 | url↵ | | 1 | if ( extractor instanceof XPathExtractor){↵
|
| | | 2 | XPathExtractor xpath = (XPathExtractor)extractor;↵
|
5 | Field.setText(sampler.getURLData());↵ | | 3 | xpath.setDefaultValue(defaultField.getText(↵
|
6 | sendSoapAction.setSelected(sampler.getSendSOAPAction());↵ | | |
|
7 | soapAction.setText(sampler.getSOAPAction());↵ | | |
|
8 | soapXml.setText(sampler.getXmlData());↵ | | |
|
9 | soapXmlFile.setFilename(sampler.getXmlFile↵ | | 4 | ));↵
|
| | | 5 | xpath.setRefName(refNameField.getText());↵
|
| | | 6 | xpath.setXPathQuery(xpathQueryField.getText());↵
|
| | | 7 | xpath.setTolerant(tolerant.isSelected());↵
|
| | | 8 | xpath.setNameSpace(nameSpace.isSelected());↵
|
10 | ());↵ | | 9 | xpath.setShowWarnings(showWarnings.isSelected());↵
|
11 | useKeepAlive.setSelected(sampler.getUseKeepAlive());↵ | | 10 | ↵
|
12 | | | 11 | xpath.setReportErrors(reportErrors.isSelected());↵
|
| | | 12 | xpath.setQuiet(quiet.isSelected());↵
|
| | | 13 |
|