183184185186187188189190
* . */ @Test public final void testGetInputWithRandomValue() { assertNull("Wrong Xpath so null as result of InputWithRandomValue", browser.getInputWithRandomValue(new FormInput("text", new Identification( How.xpath, "/RUBISH"), "abc"))); }
154155156157158159160161
* {@link com.crawljax.browser.EmbeddedBrowser#getInputWithRandomValue(com.crawljax.forms.FormInput)} * . */ @Test(expected = BrowserConnectionException.class) public void testGetInputWithRandomValue() { browser.getInputWithRandomValue(new FormInput("text", new Identification(How.xpath, "/HTML"), "abc")); }
193194195196197198199200