Selenium taking too much time to load url

Viewed 1136

When i load the url in browser manually then it opens very fast but using selenium to open same url taking too much time to load. Can any one help me why this is happening?

driver=BrowserFactory.startBrowser("chrome", "www.abc.com");
LoginPage login=new LoginPage(driver);
login.username().sendKeys("xyzabc");
login.password().sendKeys("123456");
login.loginBtn().click();
0 Answers
Related