The following code raises no error and can be used to reproduce the problem
(i.e. locates all elements correctly).
```ruby
require 'watir-webdriver'
begin
browser = Watir::Browser.new :chrome
browser.goto 'ckeditor.com/demo#full'
browser.a(:title => 'Link').when_present.click
browser.a(:title => 'Browse Server').when_present.click
browser.window(:title => 'CKFinder').use do
browser.frame.wait_until_present
browser.frame.a(:id => 'r0').right_click
browser.frame.frame(:id => 'cke_22_frame').when_present.a(:id =>
'cke_200').click
end
ensure
browser.close
end
```
This code raises error described in issue when using Chrome and doesn't raise
error when using Firefox. I suppose this means that the issue is in
selenium-webdriver, not watir.
@jarib Could you please take a look and let me know if bug should be raised
against selenium?
---
Reply to this email directly or view it on GitHub:
https://github.com/watir/watir-webdriver/issues/196#issuecomment-17776824
_______________________________________________
Wtr-development mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-development