Page keeps loading in Chrome Driver

I am working on automation of web applications and I have this problem with Chrome driver. The page continues to load and does not proceed to the next step.

For example: a successful login script.

The application starts and the username passwords are entered successfully and the home page loads. The home page keeps loading that it doesn't go to the next button click (ex. Logout) If I manually stop the browser refresh, it does the next click, but then the browser continues loading.

I have already included

 this.driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);

      

I tried sendKeys (Keys.ESCAPE) too. Nothing seems to work.

+3


source to share





All Articles