Selenium + ChromeDriver

3

I'm developing a tool to login to a site, but I have a problem.

When I do the manual procedure (opening browser, accessing site, entering user / password and logging in), the next one is loaded without opening another tab or another page, but when I perform via IDE, the browser understands that you have to open another page.

Would anyone know how to solve this problem? Well, I've already looked into it and found nothing.

    
asked by anonymous 27.08.2014 / 22:00

1 answer

1

I was able to resolve (after a divine intervention) the problem.

After I log in to the site, I put the following code:

driver.getPageSource();

Thank you.

    
27.08.2014 / 22:11