1 | public void configure(TestElement element) {↵ | | |
|
2 | super.configure(element);↵ | | |
|
3 | LineChart bc = (LineChart)element;↵ | | |
|
4 | xItems.setText(bc.getXAxis());↵ | | |
|
5 | yItems.setText(bc.getYAxis());↵ | | |
|
6 | xAxisLabel.setText(bc.getXLabel());↵ | | |
|
7 | yAxisLabel.setText(bc.getYLabel());↵ | | |
|
8 | caption.setText(bc.getCaption());↵ | | |
|
9 | urls.setText(bc.getURLs↵ | | 1 | if (s instanceof SoapSampler) {↵
|
| | | 2 | SoapSampler sampler = (SoapSampler) s;↵
|
| | | 3 | sampler.setURLData(urlField.getText());↵
|
| | | 4 | sampler.setXmlData(soapXml.getText());↵
|
| | | 5 | sampler.setXmlFile(soapXmlFile.getFilename());↵
|
| | | 6 | sampler.setSOAPAction(soapAction.getText());↵
|
| | | 7 | sampler.setSendSOAPAction(sendSoapAction.isSelected());↵
|
10 | ());↵ | | 8 | sampler.setUseKeepAlive(useKeepAlive.isSelected());↵
|
11 | | | 9 |
|