Rahul, Implementing other checks would be a bit harder, because you'll have to detect element locator of the selected element. I'd like to try to implement as many checks as possible, though. Patches are appreciated, of course :)
Thanks, Shinya On 09/12/05, Rahul Chaturvedi <[EMAIL PROTECTED]> wrote: > Thanks Shinya for your reply. > > One more thing i would like to know. This recorder gives only > verifyTextPresent, open current url and verifyTitle as default command under > "append selenium command" tag when we right click . Can one add new commands > in this so that one need not write then manually (other commands like > verifyElementPresent, verifyText, etc other verify commands) or is there any > other version of recorder which have a bigger list of all these verify > commands under "append selemiun commands". > > regards, > Rahul > > > On 12/9/05, > [EMAIL PROTECTED] < > [EMAIL PROTECTED]> > wrote: > > Send Selenium-users mailing list submissions to > > selenium-users@lists.public.thoughtworks.org > > > > To subscribe or unsubscribe via the World Wide Web, visit > > > http://lists.public.thoughtworks.org/mailman/listinfo/selenium-users > > or, via email, send a message with subject or body 'help' to > > > [EMAIL PROTECTED] > > > > You can reach the person managing the list at > > > [EMAIL PROTECTED] > > > > When replying, please edit your Subject line so it is more specific > > than "Re: Contents of Selenium-users digest..." > > > > > > Today's Topics: > > > > 1. when was Selenium Recorder plug in for firefox launched > > (Rahul Chaturvedi) > > 2. Re: when was Selenium Recorder plug in for firefox launched > > (Shinya Kasatani) > > 3. Xpath gives two results (Geert Lemmens) > > 4. Re: Xpath gives two results (Alexandre Garel) > > > > > > > > ---------- Forwarded message ---------- > > From: Rahul Chaturvedi <[EMAIL PROTECTED]> > > To: selenium-users@lists.public.thoughtworks.org > > Date: Thu, 8 Dec 2005 17:36:02 +0530 > > Subject: [Selenium-users] when was Selenium Recorder plug in for firefox > launched > > > > Hi Seleniumites, > > > > I wanted this little information, if any one knows when (date) was this > selenium recorder plug in for firefox launched. > > ( check for 11th point in this page : > http://wiki.openqa.org/display/SEL/FAQ ) > > > > Regards, > > Rahul Chaturvedi > > > > > > ---------- Forwarded message ---------- > > From: Shinya Kasatani <[EMAIL PROTECTED]> > > To: selenium-users@lists.public.thoughtworks.org > > Date: Thu, 8 Dec 2005 22:25:53 +0900 > > Subject: Re: [Selenium-users] when was Selenium Recorder plug in for > firefox launched > > Hi Rahul, > > > > The first version of Selenium Recorder was released on 26 Aug. > > Here is my post to selenium-devel list: > > > http://lists.public.thoughtworks.org/pipermail/selenium-devel/2005-August/000714.html > > > > Regards, > > Shinya > > > > On 08/12/05, Rahul Chaturvedi <[EMAIL PROTECTED]> wrote: > > > Hi Seleniumites, > > > > > > I wanted this little information, if any one knows when (date) was this > > > selenium recorder plug in for firefox launched. > > > ( check for 11th point in this page : > > > http://wiki.openqa.org/display/SEL/FAQ ) > > > > > > Regards, > > > Rahul Chaturvedi > > > _______________________________________________ > > > Selenium-users mailing list > > > Selenium-users@lists.public.thoughtworks.org > > > > http://lists.public.thoughtworks.org/mailman/listinfo/selenium-users > > > > > > > > > > > > > > > > > > > ---------- Forwarded message ---------- > > From: "Geert Lemmens" <[EMAIL PROTECTED]> > > To: < Selenium-users@lists.public.thoughtworks.org> > > Date: Thu, 8 Dec 2005 14:53:10 +0100 > > Subject: [Selenium-users] Xpath gives two results > > Hi, > > > > I'm only working with Selenium for a couple of months so I'm new at it. > > > > On our project, we are not using the driven mode for Selenium since we are > working with functional testers who don't have enough technical knowledge to > write Java. > > > > Till now all worked well but now we have a problem when using > Xpath-functions on one screen. The situation is as follows: in our > application we get a table with a number of rows. At the end of each row, > there is a checkbox in order to select the rows you will be using in the > next step. > > > > You would get something like this (only a small abstract): > > > > 1/2003 > > 01/01/2003 Payment Payed 'checkbox' > > 01/02/2003 Payment Not Payed 'checkbox' > > 01/01/2003 Payment Payed 'checkbox' > > > > As you can see, row 1 and 3 are identical (also, each checkbox has the > same ID). We want to check the third line (so the second identical row). We > can select the second identical row if we work within the xpath expression > with rows and columns BUT these rows are generated with batches so often new > lines are added to the screen which makes it impossible to use this method. > > > > Does anybody have other ideas how to solve this? > > > > > > ---------- Forwarded message ---------- > > From: "Alexandre Garel" <[EMAIL PROTECTED] > > > To: selenium-users@lists.public.thoughtworks.org > > Date: Thu, 08 Dec 2005 16:24:39 +0100 > > Subject: Re: [Selenium-users] Xpath gives two results > > > > Geert Lemmens a écrit : > > > > >Hi, > > > > > >I'm only working with Selenium for a couple of months so I'm new at it. > > > > > >On our project, we are not using the driven mode for Selenium since we > are working with functional testers who don't have enough technical > knowledge to write Java. > > > > > >Till now all worked well but now we have a problem when using > Xpath-functions on one screen. The situation is as follows: in our > application we get a table with a number of rows. At the end of each row, > there is a checkbox in order to select the rows you will be using in the > next step. > > > > > >You would get something like this (only a small abstract): > > > > > >1/2003 > > >01/01/2003 Payment Payed 'checkbox' > > >01/02/2003 Payment Not Payed 'checkbox' > > >01/01/2003 Payment Payed 'checkbox' > > > > > > > > >As you can see, row 1 and 3 are identical (also, each checkbox has the > same ID). We want to check the third line (so the second identical row). We > can select the second identical row if we work within the xpath expression > with rows and columns BUT these rows are generated with batches so often new > lines are added to the screen which makes it impossible to use this method. > > > > > >Does anybody have other ideas how to solve this? > > > > > > > > > > > > > > Html Text would be better to give a precise answer. > > I would say that if you got the xpath which gives you the two lines, > > just enclose it in parenthesis and add a [2] at the end. > > For example if > > > //td[text()="01/01/2003"]/following-sibling::td[text()="Payment"]/following-sibling::td[text()="Payed"]/following-sibling::td/input > > is the xpath that gives you both lines, you should write > > > (//td[text()="01/01/2003"]/following-sibling::td[text()="Payment"]/following-sibling::td[text()="Payed"]/following-sibling::td/input)[2] > > to have the second line. > > > > Hope it helps > > Alex. > > > > > > > > > > > > Ce message est protégé par les règles relatives au secret des > correspondances. Il est donc établi à destination exclusive de son > destinataire. Celui-ci peut donc contenir des informations confidentielles. > La divulgation de ces informations est à ce titre rigoureusement interdite. > Si vous avez reçu ce message par erreur, merci de le renvoyer à l'expéditeur > dont l'adresse e-mail figure ci-dessus et de détruire le message ainsi que > toute pièce jointe. > > > > This message is protected by the secrecy of correspondence rules. > Therefore, this message is intended solely for the attention of the > addressee. This message may contain privileged or confidential information, > as such the disclosure of these informations is strictly forbidden. If, by > mistake, you have received this message, please return this message to the > addressser whose e-mail address is written above and destroy this message > and all files attached. > > > > > > > > _______________________________________________ > > Selenium-users mailing list > > Selenium-users@lists.public.thoughtworks.org > > > http://lists.public.thoughtworks.org/mailman/listinfo/selenium-users > > > > > > > > > _______________________________________________ > Selenium-users mailing list > Selenium-users@lists.public.thoughtworks.org > http://lists.public.thoughtworks.org/mailman/listinfo/selenium-users > > > _______________________________________________ Selenium-users mailing list Selenium-users@lists.public.thoughtworks.org http://lists.public.thoughtworks.org/mailman/listinfo/selenium-users