selenium - URL not typing in firefox -
i facing problem when executing selenium in eclipse.
i using eclipse luna, mozilla firefox 41 , selenium 2.48.2. when try run below code, url not typing in firefox.
import org.openqa.selenium.webdriver; import org.openqa.selenium.firefox.firefoxdriver; public class first { public static void main(string args[]) { webdriver driver = new firefoxdriver(); driver.get("http://www.google.com"); } }
Comments
Post a Comment