Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>just do a slight amendment in ur createData() i.e</p> <pre><code>import java.util.regex.Pattern; import java.util.concurrent.TimeUnit; import org.junit.*; import static org.junit.Assert.*; import static org.hamcrest.CoreMatchers.*; import org.openqa.selenium.*; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.support.ui.Select; import org.testng.annotations.*; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; import java.io.File; @SuppressWarnings("unused") public class FirstTestusingWebDriver { private WebDriver driver; private String baseUrl="http://www.google.co.in"; private StringBuffer verificationErrors = new StringBuffer(); @BeforeClass public void setUp() throws Exception { driver = new FirefoxDriver(); driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS); } @DataProvider(name="DP") Object[][] createData(){ String[] testData = {"Cheese", "Sudeep"}; System.out.println("Data is getting created"); return new Object[][]{{testData[0]+testData[1]}}; } @Test(dataProvider="DP") public void testUntitled(String testData) throws Exception { driver.get("http://www.google.co.in/"); driver.findElement(By.id("lst-ib")).clear(); driver.findElement(By.id("lst-ib")).sendKeys(testData); driver.findElement(By.name("btnG")).click(); //driver.findElement(By.linkText("Cheese - Wikipedia, the free encyclopedia")).click(); } @AfterClass public void tearDown() throws Exception { //driver.quit(); String verificationErrorString = verificationErrors.toString(); if (!"".equals(verificationErrorString)) { fail(verificationErrorString); } } private boolean isElementPresent(By by) { try { driver.findElement(by); return true; } catch (NoSuchElementException e) { return false; } }} </code></pre> <p>now it will work fine..</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload