Re: Selenium testing

2022-02-01 Thread Martin Terra
ti 1. helmik. 2022 klo 13.32 Wayne W (waynemailingli...@gmail.com) kirjoitti: > Thanks all for your replies. > Food for thought there. > > WicketTester seems the 'better' solution, but I'm trying to hand this over > to a QA person who cannot program. Ernesto - I think it would be a massive >

Re: Selenium testing

2022-02-01 Thread Wayne W
Thanks all for your replies. Food for thought there. WicketTester seems the 'better' solution, but I'm trying to hand this over to a QA person who cannot program. Ernesto - I think it would be a massive undertaking for use to get the css paths working well enough so that there was some

Re: Selenium testing

2022-01-31 Thread Ernesto Reinaldo Barreiro
Hi, Our app contains about 600 selenium tests... They are a pain to maintain even when we are trying to do things "the smart way". By this we mean: - We have some reusable wicket components. E.g. some AJAX table with lateral filtering facets. We roll in component marker CSS classes (e.g.

Re: Selenium testing

2022-01-31 Thread Martin Terra
ma 31. tammik. 2022 klo 15.38 Wayne W (waynemailingli...@gmail.com) kirjoitti: > Hello all, > > Is anyone out there successfully using Selenium to do regression testing? > It seems with the latest version of Selenium you cannot add custom > selectors anymore (the idea turning on >

Selenium testing

2022-01-31 Thread Wayne W
Hello all, Is anyone out there successfully using Selenium to do regression testing? It seems with the latest version of Selenium you cannot add custom selectors anymore (the idea turning on getDebugSettings().setComponentPathAttributeName("wicketpath") ). So it just uses css selectors and xpath

Re: Selenium Testing - Ajax Loads

2010-02-18 Thread Douglas Ferguson
From: Igor Vaynberg [igor.vaynb...@gmail.com] Sent: Tuesday, February 16, 2010 11:11 AM To: users@wicket.apache.org Subject: Re: Selenium Testing - Ajax Loads how would you do that exactly? -igor On Tue, Feb 16, 2010 at 7:26 AM, Douglas Ferguson doug...@douglasferguson.us wrote

Re: Selenium Testing - Ajax Loads

2010-02-16 Thread Douglas Ferguson
the path in repeaters is never stable, it depends on a lot of factors and is hard to predict. i think what may be a good way to deal with it is to use an IComponentInstantiationListener to add a behavior to Item subclasses to output their index in some attribute. install this listener only

Re: Selenium Testing - Ajax Loads

2010-02-16 Thread Igor Vaynberg
how would you do that exactly? -igor On Tue, Feb 16, 2010 at 7:26 AM, Douglas Ferguson doug...@douglasferguson.us wrote: the path in repeaters is never stable, it depends on a lot of factors and is hard to predict. i think what may be a good way to deal with it is to use an

Selenium Testing - Dealing with unstable wicket path

2010-02-16 Thread Douglas Ferguson
I'm using the following xpath wtih regex.. and this works.. xpath=//*[fn:matches(@wicketpath,'taskListContainer_taskTable_taskList_\\d')][2] but this doesn't xpath=//*[fn:matches(@wicketpath,'taskListContainer_taskTable_taskList_\\d_taskContainer_edit')][2] any idea why?

Re: Selenium Testing - Dealing with unstable wicket path

2010-02-16 Thread Martin Makundi
Hi! Maybe you can generate the path from the actual path? http://cwiki.apache.org/WICKET/type-safe-testing-in-wicket.html ** Martin 2010/2/17 Douglas Ferguson doug...@douglasferguson.us: I'm using the following xpath wtih regex.. and this works..

RE: Selenium Testing - Dealing with unstable wicket path

2010-02-16 Thread Douglas Ferguson
PM To: users@wicket.apache.org Subject: Re: Selenium Testing - Dealing with unstable wicket path Hi! Maybe you can generate the path from the actual path? http://cwiki.apache.org/WICKET/type-safe-testing-in-wicket.html ** Martin 2010/2/17 Douglas Ferguson doug...@douglasferguson.us: I'm using

RE: Selenium Testing - Ajax Loads

2010-02-16 Thread Douglas Ferguson
: Igor Vaynberg [igor.vaynb...@gmail.com] Sent: Tuesday, February 16, 2010 11:11 AM To: users@wicket.apache.org Subject: Re: Selenium Testing - Ajax Loads how would you do that exactly? -igor On Tue, Feb 16, 2010 at 7:26 AM, Douglas Ferguson doug...@douglasferguson.us wrote: the path in repeaters

Re: Selenium Testing - Dealing with unstable wicket path

2010-02-16 Thread Martin Makundi
...@yahoogroups.com From: Martin Makundi [martin.maku...@koodaripalvelut.com] Sent: Tuesday, February 16, 2010 9:55 PM To: users@wicket.apache.org Subject: Re: Selenium Testing - Dealing with unstable wicket path Hi! Maybe you can generate the path from

Re: Selenium Testing - Dealing with unstable wicket path

2010-02-16 Thread Martin Makundi
: Re: Selenium Testing - Dealing with unstable wicket path Hi! Maybe you can generate the path from the actual path? http://cwiki.apache.org/WICKET/type-safe-testing-in-wicket.html ** Martin 2010/2/17 Douglas Ferguson doug...@douglasferguson.us: I'm using the following xpath wtih regex

RE: Selenium Testing - Dealing with unstable wicket path

2010-02-16 Thread Douglas Ferguson
...@yahoogroups.com From: Martin Makundi [martin.maku...@koodaripalvelut.com] Sent: Wednesday, February 17, 2010 12:11 AM To: users@wicket.apache.org Subject: Re: Selenium Testing - Dealing with unstable wicket path Hi! You can run selenium tests with junit. http

Re: Selenium Testing - Dealing with unstable wicket path

2010-02-16 Thread Martin Makundi
: Martin Makundi [martin.maku...@koodaripalvelut.com] Sent: Wednesday, February 17, 2010 12:11 AM To: users@wicket.apache.org Subject: Re: Selenium Testing - Dealing with unstable wicket path Hi! You can run selenium tests with junit. http://www.junit.org/node/23 ** Martin 2010/2/17 Douglas

Re: Selenium Testing - Ajax Loads

2010-02-16 Thread Igor Vaynberg
/ http://www.stillrecording.com/ Join my mailing list: distilleryrecords-subscr...@yahoogroups.com From: Igor Vaynberg [igor.vaynb...@gmail.com] Sent: Tuesday, February 16, 2010 11:11 AM To: users@wicket.apache.org Subject: Re: Selenium Testing - Ajax

RE: Selenium Testing - Dealing with unstable wicket path

2010-02-16 Thread Douglas Ferguson
...@koodaripalvelut.com] Sent: Wednesday, February 17, 2010 12:45 AM To: users@wicket.apache.org Subject: Re: Selenium Testing - Dealing with unstable wicket path Hi! Yes. We have found that building testability and acceptance tests into the application is a good approach. Maybe it does not work

Selenium Testing - Ajax Loads

2010-02-15 Thread Douglas Ferguson
Hey, I'm starting to write selenium tests for my wicket app and am running into issues with a couple of wicket related problems that I thought perhaps somebody else may have solved. 1) Sometimes my repeaters don't print out consistent wicket paths, i.e. sometimes it may go

Re: Selenium Testing - Ajax Loads

2010-02-15 Thread Igor Vaynberg
On Mon, Feb 15, 2010 at 8:08 PM, Douglas Ferguson doug...@douglasferguson.us wrote: Hey, I'm starting to write selenium tests for my wicket app and am running into issues with a couple of wicket related problems that I thought perhaps somebody else may have solved. 1) Sometimes my

Re: Selenium Testing - Ajax Loads

2010-02-15 Thread Douglas Ferguson
On Feb 16, 2010, at 12:34 AM, Igor Vaynberg wrote: On Mon, Feb 15, 2010 at 8:08 PM, Douglas Ferguson doug...@douglasferguson.us wrote: Hey, I'm starting to write selenium tests for my wicket app and am running into issues with a couple of wicket related problems that I thought perhaps

Re: Selenium Testing - Ajax Loads

2010-02-15 Thread Igor Vaynberg
On Mon, Feb 15, 2010 at 11:14 PM, Douglas Ferguson doug...@douglasferguson.us wrote: On Feb 16, 2010, at 12:34 AM, Igor Vaynberg wrote: On Mon, Feb 15, 2010 at 8:08 PM, Douglas Ferguson doug...@douglasferguson.us wrote: Hey, I'm starting to write selenium tests for my wicket app and am