Giter Club home page Giter Club logo

Comments (28)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
Issue 23 has been merged into this issue.

Original comment by [email protected] on 29 Feb 2012 at 5:53

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024

Original comment by [email protected] on 12 Mar 2012 at 7:55

  • Added labels: Priority-Medium
  • Removed labels: Priority-Low

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
You are right. This is a huge problem, and it needs High priority. It is 
discussing here 
http://stackoverflow.com/questions/9876529/make-browser-stop-loading-page

Original comment by [email protected] on 29 Mar 2012 at 2:46

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
hi, could you please provide any estimates on when this feature will be 
released?

Original comment by xHardCorexKid on 13 Apr 2012 at 11:25

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
This feature is slated for release in April-June. What is slowing (or hanging) 
your page load? You might could check the developer tools or the chrome net log 
to see what is taking so long.

I'm not sure this issue deserves high priority. It is not implemented in any 
other driver except for Firefox, right?

Original comment by [email protected] on 17 Apr 2012 at 4:52

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
If you look at my report (Issue 23), you'll see that Chromedriver frequently 
becomes unresponsive/refuses to accept further instructions. From what I 
understand, this ticket won't address Chromedriver hangs, but will provide a 
built-in way to timeout (no need to create your own timeout mechanism with 
socket timeouts or threads).

Original comment by [email protected] on 17 Apr 2012 at 4:59

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
Yes, I agree with [email protected]
This is the main reason why i'm wondering when this feature will be developed 
and released.

Original comment by xHardCorexKid on 17 Apr 2012 at 7:17

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
IE now has support for this too (well, it will in 2.22).

The wire call is defined here:
http://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/time
outs

for this issue it's 'page load'

But this wire call also can take 'implicit' or 'script' as the type, 
essentially aliases of the other end points. When 'page load' is taken care of 
can the aliases be too? (or should I log a new issue?)

Original comment by luke.semerau on 26 May 2012 at 5:26

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
I'm needing this ability as well.  I'm testing an enterprise application where 
loading times can often exceed 60 seconds, especially when we test with the 
system under load.  Currently, I can't use Chrome for these test scenarios due 
to not being able to change the page load timeout.

Original comment by [email protected] on 11 Oct 2012 at 11:26

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
This would be rad to have now.

Any suggestions for emulating the behaviour of this functionality?

Original comment by [email protected] on 4 Dec 2012 at 11:43

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
yes, try working directly with chrome. add an extension to the browaser:
https://chrome.google.com/webstore/detail/stop-load/andkkobbpjnjlenkopioemlapmlc
pbfl

instructions on adding an extension to chromedriver:
http://code.google.com/p/selenium/wiki/ChromeDriver

Original comment by [email protected] on 5 Dec 2012 at 7:18

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024

Original comment by [email protected] on 9 Jan 2013 at 12:10

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
This is an enhancement?  This should be a bug seeing as setting timeout with 
driver.manage().timeouts().implicitlyWait( is completely ignored in Firefox.  
One would expect this to do what one expects it to do. Run any requests for 
only a specified time , but this is not the case.

Original comment by [email protected] on 11 Feb 2013 at 4:01

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
When is this going to be fixed???

Original comment by [email protected] on 16 Feb 2013 at 8:44

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
This is definitely NOT an Enhancement, its a critical Bug.
Please Fix it ASAP.

Original comment by [email protected] on 8 Mar 2013 at 1:34

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024

Original comment by [email protected] on 13 Mar 2013 at 11:56

  • Added labels: Type-Feature
  • Removed labels: Type-Enhancement

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024

Original comment by [email protected] on 14 Mar 2013 at 9:21

  • Added labels: Pri-2

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024

Original comment by [email protected] on 14 Mar 2013 at 9:22

  • Removed labels: Priority-Medium

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
When pageloadTimeout api is implemented for ChromeDriver, will it fix the 
problem I am facing with .click() hangs when a button click triggers a 
javascript method to open another html dialog/browser window, on which I will 
need to perform some actions such as enter some comment text, then click ok 
button to dismiss this dialog. Currently, since .click() doesn't finish, so the 
script can't perform any action on this dialog, and at the same time, because 
the dialog is not dismissed, the .click() never finishes. When I manually 
dismiss the dialog, that is when I notice .click() completes.

Original comment by [email protected] on 21 Mar 2013 at 5:44

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
#19, nope, this will not fix that. That is a separate issue; see 
http://code.google.com/p/chromedriver/issues/detail?id=211

Original comment by [email protected] on 21 Mar 2013 at 4:54

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
For anyone that encounters this problem and is using python, here's my 
monkeypatch to work around the problem.    It uses socket timeouts as amiagkov 
referenced above.  

The biggest caveat here is that we have to kill the chromedriver process on an 
exception because the browser becomes unusable after the timeout is triggered 
(because it keeps waiting for the page to load indefinitely).

https://gist.github.com/timhanus/5592412

Original comment by [email protected] on 16 May 2013 at 4:13

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024

Original comment by [email protected] on 21 May 2013 at 7:25

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
Issue 353 has been merged into this issue.

Original comment by [email protected] on 21 May 2013 at 7:25

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024

Original comment by [email protected] on 10 Jun 2013 at 10:00

  • Changed state: ToBeReleased

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
Released in v2.1

Original comment by [email protected] on 15 Jul 2013 at 3:46

  • Changed state: Closed

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
Google a lot but not able to get an sample. 

It doesn't work like below. Who can help?

DesiredCapabilities caps = DesiredCapabilities.chrome();
caps.setCapability("webdriver.load.strategy", "unstable");

WebDriver driver = new ChromeDriver(caps);

Original comment by [email protected] on 22 Sep 2013 at 4:02

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024
Issue 23 has been merged into this issue.

Original comment by [email protected] on 1 Oct 2013 at 4:33

from chromedriver.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 22, 2024

Original comment by [email protected] on 21 Feb 2015 at 12:25

  • Changed state: Fixed

from chromedriver.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.