package com.Pack;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class TextBoxDemo {
//Launch the browser
//enter valid url
//enter data in to text box
public static void main(String[] args)
{
// System.setProperty("webdriver.c rome.driver",
// "/Users/adeshpansuriya/Downloads/chromedriver");
WebDriver driver = new FirefoxDriver();
}
}
-Dcommand line option. If that doesn't help, update your question with a minimal reproducible example, including the command line you are using to run the example.