Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem with chrome running C# webdriver.

Whenever i click a link that spawns a popup the click command waits for 30sec or so and then fails with:

http://localhost:48808/session/92d33d6032c3ac55cb8dc903adc2297b/element/:wdc:1318515744285/click

Is this a known issue in chrome?, the test runs without problems in IE and Firefox.

The link in question looks like this:

<a class="button" id="ContentPlaceHolderCMSEdit_CMSToolbar1_btnDelete" onclick="return confirm('Are you sure you want to delete this page? It cannot be undone.');" href="javascript:__doPostBack('ctl00$ContentPlaceHolderCMSEdit$CMSToolbar1$btnDelete','')">
share|improve this question

1 Answer

up vote 0 down vote accepted

Support for alert handling via WebDriver was only implemented in either Chrome 15 or 16 (I can't remember exactly which). Neither version is yet available on the stable channel. You could try switching to the beta or dev channels and see if that works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.