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

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 consistency

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

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 n

Re: Selenium Testing - Ajax Loads

2010-02-18 Thread Douglas Ferguson
domLocator.append("window.$('[wicketpath=\\'"); >> domLocator.append(wicketPath); >>domLocator.append("\\']').get(0);"); >>} >>return domLocator.to

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

Re: Selenium Testing - Ajax Loads

2010-02-16 Thread Igor Vaynberg
#x27;).get(0);"); >                } >                return domLocator.toString(); >        } > > > Douglas Ferguson > > mobile: 512.293.7279 > office/fax: 512.462.0408 > skype: stillrecording > aim:   DaAmericanRuse > > - > > http://www.linkedin.com/i

Re: Selenium Testing - Dealing with unstable wicket path

2010-02-16 Thread Martin Makundi
groups.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

RE: Selenium Testing - Dealing with unstable wicket path

2010-02-16 Thread Douglas Ferguson
ubscr...@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.

Re: Selenium Testing - Dealing with unstable wicket path

2010-02-16 Thread Martin Makundi
_____ >> 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 gene

Re: Selenium Testing - Dealing with unstable wicket path

2010-02-16 Thread Martin Makundi
om/ > > Join my mailing list: distilleryrecords-subscr...@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 - De

RE: Selenium Testing - Ajax Loads

2010-02-16 Thread Douglas Ferguson
: 512.293.7279 office/fax: 512.462.0408 skype: stillrecording aim: DaAmericanRuse - http://www.linkedin.com/in/douglasferguson http://www.myspace.com/douglasferguson http://www.douglasferguson.us/ http://www.distilleryrecords.com/ http://www.stillrecording.com/ Join my mailing list: distilleryrecords-su

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 : > I'm using the following xp

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 : > I'm using the following xpath wtih regex.. > > and this works.. > > "xpath=//*[fn:matches(@wicketpath,'taskListContainer_taskTable_t

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 - Ajax Loads

2010-02-16 Thread Douglas Ferguson
groups.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 Loads how would you do that exactly? -igor On Tue, Feb 16, 2010 at 7:26 AM, Douglas Ferguson wrote: > &

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 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 IComponentInstantiationListener to ad

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 on

Re: Selenium Testing - Ajax Loads

2010-02-15 Thread Igor Vaynberg
On Mon, Feb 15, 2010 at 11:14 PM, Douglas Ferguson wrote: > > On Feb 16, 2010, at 12:34 AM, Igor Vaynberg wrote: > >> On Mon, Feb 15, 2010 at 8:08 PM, Douglas Ferguson >> wrote: >>> Hey, >>> >>> I'm starting to write selenium tests for my wicket app and am running into >>> issues with a couple o

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

Re: Selenium Testing - Ajax Loads

2010-02-15 Thread Igor Vaynberg
On Mon, Feb 15, 2010 at 8:08 PM, Douglas Ferguson 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 repeaters don't print out c

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 element_path_name_1