Re: [wtr-general] iterating LI through elements

2017-01-03 Thread artie . ziff
Your example usages was very helpful! With this code I can simply map the text strings to a list (as you show), then use RSpec's expect with an include matcher for some validation. Thank you very much to both of you, johnssn and Oscar, for illustrating the appropriate Watir API usage with some

[wtr-general] iterating LI through elements

2017-01-03 Thread artie . ziff
Hello Folks, I am trying to find syntax for express the following. I want to iterate across LI elements in a UL (unordered list) I thought something like this would do it: all_li_elements = browser.div(:id => 'topLevelMenu0').li Maybe that's close? Then I was hoping to iterate though

[wtr-general] detection of a modal window

2016-11-01 Thread artie . ziff
Hello Watir Aficionados, I am seeking more examples for detecting modal dialogs that place themselves frontmost; on top of the browser window. I see this one little example: => http://watir.github.io/docs/browser-popups/ ==>

[wtr-general] managing multiple browser windows or tabs

2016-10-13 Thread artie . ziff
Hello watir list members: I am trying to determine an approach to dealing with multiple windows and a web site that prompts for multiple authentications at different web URLs (sometimes in the same tab and sometimes not). When the web application I want to verify redirects to a login page

[wtr-general] Re: The Watir Podcast #61 - WatirSome page objects

2016-10-11 Thread artie . ziff
is it posted somewhere around here: https://watir.com/category/podcast/ -- -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-general@googlegroups.com http://groups.google.com/group/watir-general watir-general+unsubscr...@googlegroups.com

[wtr-general] getting started with Watir and Watir-RSpec

2016-10-07 Thread artie . ziff
Thanks again to Justin for the massive help! My stack is running and smoking' fast! This next inquiry is for everyone else! :) I am seeking most up-to-date resources for using/programming with Watir. I guess that any resource prior to some particular year (2011, 2013?) is out of date and not

[wtr-general] Re: goto method not found

2016-10-07 Thread artie . ziff
Justin, Thanks for the super helpful responses! And demonstrating the necessary fixes to the example. You are most kind!!! -- -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-general@googlegroups.com

[wtr-general] Re: goto method not found

2016-10-04 Thread artie . ziff
Thanks very much for the dialog on this, Justin. I know your time must be valuable. Well, perhaps the mystery deepens. :) At least for me it does. Lot for me to learn here. Indeed, this entire block (with comments) was inside my ./spec/spec_helper.rb file: require "watir/rspec"

[wtr-general] Re: goto method not found

2016-10-04 Thread artie . ziff
Thank you very much for your reply Yes, I ran install. IIRC correctly there were two lines of output. I did not make a copy of the spec_helper before I ran the install. What should I look for in there? thanks! -AZ On Tuesday, October 4, 2016 at 6:52:30 AM UTC-7, Justin Ko wrote: > > It

[wtr-general] goto method not found

2016-10-04 Thread artie . ziff
Hello! I want to use watir-rspec . After finding this google group, I see a post announcing a new release from jarmo. So, I must be in the right place, finally. Is the recent release of watir-rspec known to work? I tried the "Google" example (exactly as