|
14 | 14 | import java.util.logging.Level; |
15 | 15 | import java.util.logging.Logger; |
16 | 16 |
|
17 | | -import com.gargoylesoftware.htmlunit.ElementNotFoundException; |
18 | | -import com.gargoylesoftware.htmlunit.html.DomElement; |
19 | | -import com.gargoylesoftware.htmlunit.html.DomNodeList; |
20 | | -import com.gargoylesoftware.htmlunit.html.HtmlButton; |
21 | | -import com.gargoylesoftware.htmlunit.html.HtmlElement; |
22 | | -import com.gargoylesoftware.htmlunit.html.HtmlForm; |
23 | | -import com.gargoylesoftware.htmlunit.html.HtmlFormUtil; |
24 | | -import com.gargoylesoftware.htmlunit.html.HtmlInput; |
25 | | -import com.gargoylesoftware.htmlunit.html.HtmlPage; |
| 17 | +import org.htmlunit.ElementNotFoundException; |
| 18 | +import org.htmlunit.html.DomElement; |
| 19 | +import org.htmlunit.html.DomNodeList; |
| 20 | +import org.htmlunit.html.HtmlButton; |
| 21 | +import org.htmlunit.html.HtmlElement; |
| 22 | +import org.htmlunit.html.HtmlForm; |
| 23 | +import org.htmlunit.html.HtmlFormUtil; |
| 24 | +import org.htmlunit.html.HtmlInput; |
| 25 | +import org.htmlunit.html.HtmlPage; |
26 | 26 | import org.apache.commons.beanutils.PropertyUtils; |
27 | 27 | import org.apache.commons.lang3.RandomStringUtils; |
28 | 28 | import org.apache.commons.lang3.RandomUtils; |
@@ -266,7 +266,7 @@ public void defaultWorkspaceVolume() throws Exception { |
266 | 266 | buttonDetails.click(); |
267 | 267 | DomElement templates = p.getElementByName("templates"); |
268 | 268 | HtmlInput templateName = getInputByName(templates, "_.name"); |
269 | | - templateName.setValueAttribute("default-workspace-volume"); |
| 269 | + templateName.setValue("default-workspace-volume"); |
270 | 270 | j.submit(f); |
271 | 271 | cloud = j.jenkins.clouds.get(KubernetesCloud.class); |
272 | 272 | PodTemplate podTemplate = cloud.getTemplates().get(0); |
|
0 commit comments