Re: [wtr-general] Re: b.select_list.select is not working in 6.16

2018-12-24 Thread rajagopalan madasami
Okay On Tue 25 Dec, 2018, 1:37 AM Titus Fortner Watir 6.16 is now trying to find the option directly without making > extra wire calls to find the Select List first. It's possible that > something was missed in our test suite, but we need to actually be > able to reproduce the issue you are

Re: [wtr-general] Re: b.select_list.select is not working in 6.16

2018-12-24 Thread Titus Fortner
Watir 6.16 is now trying to find the option directly without making extra wire calls to find the Select List first. It's possible that something was missed in our test suite, but we need to actually be able to reproduce the issue you are seeing. http://sscce.org/ ideally you give us a script

Re: [wtr-general] Re: b.select_list.select is not working in 6.16

2018-12-23 Thread rajagopalanmadasami
Hi Justin Ko, What other detail you specifically want from me ? Actually the same code I am running in WATIR 6.14 and it's running fine but it's throwing error when I use WATIR 6.16. On Friday, 21 December 2018 21:07:33 UTC+5:30, Justin Ko wrote: > > Hi Raj, > > I think we still need more

Re: [wtr-general] Re: b.select_list.select is not working in 6.16

2018-12-21 Thread Justin Ko
Hi Raj, I think we still need more details on how to reproduce the problem. I do not see anything obviously wrong from the logs. As well, given the page: Any Mr Selection is working: @b.select_list(id: "salutation").select 'Mr' p @b.select_list(id:

Re: [wtr-general] Re: b.select_list.select is not working in 6.16

2018-12-20 Thread rajagopalan madasami
Hi Titus, I have given the details in my last mail. Can you look into that ? On Wed 19 Dec, 2018, 9:43 PM Titus Fortner Our specs are all passing, so you need to provide a reproducible issue > so we can add the use case to our test suite. > > On Wed, Dec 19, 2018 at 8:50 AM Justin Ko wrote: > >

[wtr-general] Re: b.select_list.select is not working in 6.16

2018-12-20 Thread rajagopalanmadasami
Titus and Justin, The line of code I executed @b.select_list(id: "salutation").select value["User Title"] //value["User Title"]="Mr" Error I get 2018-12-20 15:24:44 WARN Watir [DEPRECATION] ["stale_exists"] Checking `#exists? == false` to determine a stale element is deprecated. Use

Re: [wtr-general] Re: b.select_list.select is not working in 6.16

2018-12-19 Thread Titus Fortner
Our specs are all passing, so you need to provide a reproducible issue so we can add the use case to our test suite. On Wed, Dec 19, 2018 at 8:50 AM Justin Ko wrote: > > Can you elaborate on what is not working? > > I get the same behaviour in 6.14 and 6.16 when running the below script - ie >

[wtr-general] Re: b.select_list.select is not working in 6.16

2018-12-19 Thread Justin Ko
Can you elaborate on what is not working? I get the same behaviour in 6.14 and 6.16 when running the below script - ie `browser.select_list.select` does not select anything. gem 'watir', '=6.14' require 'watir' browser = Watir::Browser.new browser.goto 'test_page.html'