1 | public void modifyTestElement(TestElement s) {↵ | | 1 | public void configure(TestElement element) {↵
|
2 | this.configureTestElement(s);↵ | | 2 | super.configure(element);↵
|
3 | if (s instanceof SoapSampler) {↵ | | |
|
4 | SoapSampler sampler = (SoapSampler) s;↵ | | |
|
5 | sampler.setURLData(urlField.getText());↵ | | |
|
6 | sampler.setXmlData(soapXml.getText());↵ | | |
|
7 | sampler.setXmlFile(soapXmlFile.getFilename());↵ | | |
|
8 | sampler.setSOAPAction(soapAction↵ | | 3 | ReportPage page = (ReportPage)element;↵
|
| | | 4 | cssURL.setText(page.getCSS());↵
|
| | | 5 | footerURL.setText(page.getFooterURL());↵
|
| | | 6 | headerURL.setText(page.getHeaderURL());↵
|
9 | .getText());↵ | | 7 | makeIndex.setSelected(page.getIndex());↵
|
10 | sampler.setSendSOAPAction(sendSoapAction.isSelected());↵ | | |
|
11 | samp↵ | | 8 | introduction.setText(page.getIntroduction());↵
|
12 | ler.setUseKeepAlive(useKeepAlive.isSelected());↵ | | 9 | pageTitle.set↵
|
13 | }↵ | | |
|
14 | | | 10 | Text(page.getTitle());↵
|
| | | 11 |
|