Re: [wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-08-12 Thread rajagopalan madasami
Hi Justin, Thanks for answer. Justin, Do you know how to print the geckodriver log via watir? On Tuesday, 13 August 2019 00:53:58 UTC+5:30, Justin Ko wrote: > > Manually (ie as a person, not automated by Watir) doing the steps, I am > able to reproduce the problem. It happened frequently in Fir

Re: [wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-08-12 Thread rajagopalan madasami
Hi, Is there anyway I can talk to Alex who handles the selenium binding? he might be knowing how to print the geckodriver log? On Sunday, 11 August 2019 21:47:54 UTC+5:30, Titus Fortner wrote: > > If a sleep fixes it, it's a race condition. The rest doesn't matter. -- -- Before posting, pleas

Re: [wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-08-12 Thread Justin Ko
Manually (ie as a person, not automated by Watir) doing the steps, I am able to reproduce the problem. It happened frequently in Firefox, but could also be seen occasionally in Chrome. As the problem can be seen manually, this does not seem to be a Geckodriver, Watir or Selenium problem. To me,

Re: [wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-08-11 Thread Titus Fortner
If a sleep fixes it, it's a race condition. The rest doesn't matter. -- -- 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.

Re: [wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-08-11 Thread rajagopalan madasami
But that's not happening with Chrome. It happens so properly in Chrome. This means, the problem is surely with Firefox or Geckodriver. Anyway can you guide me how to print the geckodriver log which Whimboo is asking? How to print the geckodriver log via WATIR? -- -- Before posting, please re

Re: [wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-08-10 Thread Titus Fortner
If a sleep fixes it, then it isn't the test library code or the driver, it has to do with when the app you are testing assigns the events to the elements. Is it angular or react? Essentially the test code is telling the driver to click before the app is ready, even though the element is displaye

Re: [wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-08-10 Thread rajagopalan madasami
Hi Titus, did you notice the whimboo is asking anything has changed in ruby binding for prining the geckodriver. Can you please reply to him? >>Note that I also don't use Ruby. And if the instructions as layed out on the >>trace log page don't work, it might be good to know what the Ruby folks

Re: [wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-08-04 Thread rajagopalan madasami
Yes, If I introduce sleep before button click, it works fine. On Sunday, 4 August 2019 00:18:41 UTC+5:30, Titus Fortner wrote: > > This code works just fine for me. I'm on a Mac, and I can't easily check > it works on Windows, but everything looks good to me. > Is it perhaps a timing issue on y

Re: [wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-08-03 Thread Titus Fortner
This code works just fine for me. I'm on a Mac, and I can't easily check it works on Windows, but everything looks good to me. Is it perhaps a timing issue on your machine? If you temporarily put a sleep statement there will it work? On Friday, August 2, 2019 at 10:34:58 PM UTC-7, rajagopalan m

Re: [wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-08-02 Thread rajagopalan madasami
Click is issued but action as a result of that click is not triggered. Okay, execute this code, you would see program succeeds but application doesn't get logged in. require 'watir' > b=Watir::Browser.new :firefox > b.goto 'https://uat.allianz-go.com' > b.text_field(name: 'username').set 'JyoUse

Re: [wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-08-02 Thread Titus Fortner
A single click not happening is not what you described in the ticket. Can you provide the code you used to generate this log and how it is different from what you expect? On Thu, Aug 1, 2019, 1:58 AM rajagopalan madasami < rajagopalanmadas...@gmail.com> wrote: > I have created a gist here, You c

[wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-08-01 Thread rajagopalan madasami
I have created a gist here, You can see click is issued but not triggered anything. But I am not sure whether you can know whether page has moved to the next page or not but I can see while I am running it. https://gist.github.com/Rajagopalan-M/1e5b68be57a8fa3599c56b9c0364dd6c On Thursday, 1 Au

[wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-08-01 Thread Titus Fortner
I literally and explicitly said the exact opposite of what you did. The logs you provided on Github showed the driver only received one request to click an element. If you expected it to have received more, then you need to figure out why the code did not send more, hence my suggestion to obta

[wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-07-31 Thread rajagopalan madasami
On Friday, 19 July 2019 22:39:27 UTC+5:30, Titus Fortner wrote: > > The trace you provided only shows a single click, so it isn't a > geckodriver issue. > > Do Watir.logger.level = :debug & Selenium::WebDriver.logger.level = :debug > link to a gist with the output. Something appears to be preven

[wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-07-31 Thread rajagopalan madasami
yes. Something that firefox people has to fix it. On Friday, 19 July 2019 22:17:02 UTC+5:30, Chuck van der Linden wrote: > > > On Sunday, June 16, 2019 at 5:47:51 AM UTC-7, rajagopalan madasami wrote: >> >> Hi Titus, >> >> I have raised this issue in Geckodriver, but I want to ask you whether >>

[wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-07-19 Thread Titus Fortner
The trace you provided only shows a single click, so it isn't a geckodriver issue. Do Watir.logger.level = :debug & Selenium::WebDriver.logger.level = :debug link to a gist with the output. Something appears to be preventing the click command from happening. On Sunday, June 16, 2019 at 5:4

[wtr-general] Re: Click succeeds but action as the result of that click is not triggered

2019-07-19 Thread Chuck van der Linden
On Sunday, June 16, 2019 at 5:47:51 AM UTC-7, rajagopalan madasami wrote: > > Hi Titus, > > I have raised this issue in Geckodriver, but I want to ask you whether > this kind of problem can be resolved from programming level in WATIR > > Here is the link > > https://github.com/mozilla/geckodriver