Re: [wtr-general] Re: NoSuchElementError

2018-08-29 Thread rajagopalan madasami
Great info, thank you. I will try. I will try to use watigiri as well. On Thu 30 Aug, 2018, 4:59 AM Titus Fortner, wrote: > Yes, Watir is only going to iterate over the link elements instead of all > of the elements to find the matching text. If there is a class or other > attribute that would

Re: [wtr-general] Re: NoSuchElementError

2018-08-29 Thread Titus Fortner
Yes, Watir is only going to iterate over the link elements instead of all of the elements to find the matching text. If there is a class or other attribute that would further filter out links, that would help as well. It will still be a little slower as there will be more wire calls, but I'm

Re: [wtr-general] Re: NoSuchElementError

2018-08-29 Thread rajagopalan madasami
Ah, okay , that makes difference? Okay let me check it today how it works. On Thu 30 Aug, 2018, 4:12 AM Titus Fortner, wrote: > Are you using element or link method? > > -- > -- > Before posting, please read >

Re: [wtr-general] Re: NoSuchElementError

2018-08-29 Thread Titus Fortner
Are you using element or link method? -- -- Before posting, please read https://github.com/watir/watir_meta/wiki/Guidelines-for-Posting-to-Watir-General-Google-Group. In short: search before you ask, be nice. watir-general@googlegroups.com http://groups.google.com/group/watir-general

Re: [wtr-general] Re: NoSuchElementError

2018-08-29 Thread rajagopalan madasami
I tried using visible locator, its taking more than 5 seconds in some places, but link locator clicks in no time. On Thu 30 Aug, 2018, 3:32 AM Titus Fortner, wrote: > You should be able to do a direct replacement with visible_text locator, > just with the option of adding additional locators as

Re: [wtr-general] Re: NoSuchElementError

2018-08-29 Thread Titus Fortner
You should be able to do a direct replacement with visible_text locator, just with the option of adding additional locators as desired. -- -- Before posting, please read https://github.com/watir/watir_meta/wiki/Guidelines-for-Posting-to-Watir-General-Google-Group. In short: search before

Re: [wtr-general] Re: NoSuchElementError

2018-08-29 Thread rajagopalan madasami
Hi Titus, please don't remove link locator from WATIR because many of our project uses link locator in various places, so if you remove link locator, we can't upgrade if new releases comes. On Wed 29 Aug, 2018, 3:18 AM Titus Fortner, wrote: > Based on my reading of the w3c spec, I think