[wtr-general] Privacy Policy

2019-07-19 Thread 'Martin Sütterlin' via Watir General
Hey all together, at the moment I am doing some research for a test automatisation tool. Watir seems very interessting for my project. Does anyone of you know something about the privacy policy of Watir or a link where I can find something out about that? Thank you in advance! Martin -- --

[wtr-general] Re: How to write and regular expression in WATIR?

2019-07-19 Thread Chuck van der Linden
On Saturday, June 22, 2019 at 9:52:28 AM UTC-7, rajagopalan madasami wrote: > > Consider the below code > > b.element(name: /hello|username/).send_keys 'testid' > > > `/hello|username/` represents the or operator, that means it searches the > name which is hello or username, how do I write

[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 > >

[wtr-general] Re: Privacy Policy

2019-07-19 Thread Chuck van der Linden
WATIR is a code library, not a website or online service.. it doesn't have a privacy policy. There's nothing to keep private, you don't log in, you don't have an account, you don't share personal info with the library or even the watir.com website. The closest you get to that kind of

[wtr-general] Re: How to write and regular expression in WATIR?

2019-07-19 Thread Titus Fortner
Rubular is a great resource for trying things, and there are plenty of tutorials: https://rubular.com/ If you need both, you have a lot of options, but: /hello.*username/ On Saturday, June 22, 2019 at 9:52:28 AM UTC-7, rajagopalan madasami wrote: > > Consider the below code > > b.element(name:

[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