// No tab content box in this block.
{
HtmlTable resultsTableElm = ((HtmlForm)client.getElement("parametersForm")).getFirstByXPath(".//table[@class='properties-table']");
ContentTable resultsTable = ejtt.getTable(resultsTableElm);
ContentTableRow row = resultsTable.getFirstRowContainingText("Command Line Arguments");
assertNotNull("'Command Line Arguments' row not found.", row);
HtmlCheckBoxInput unsetCheckbox = row./*getCellByColumnName("Unset").*/ getElement().getFirstByXPath(".//input[@type='checkbox']");
unsetCheckbox.setChecked(false);
HtmlTextArea argsTA = row./*getCellByColumnName("Value").*/ getElement().getFirstByXPath(".//textarea"); // [@ondblclick='commandLineArguments']
argsTA.setText("-c");
DebugUtils.writeFile("target/scriptsWithParam-settingParams.html", client.getPageAsText());
ejtt.sleep(2000);