Hey:
I was wondering if anyone has put together a presentation explaining
the featues of selenium? I wanted to do one in my organisation, and
did not want to recreate if something is already present...
thanks in advance...

-Bala

On 15/07/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. Re2: [Selenium-users] Verify A tag. (neko bsd)
>   2. All Tests (neko bsd)
>   3. Re: All Tests (Mike Williams)
>   4. ignore maxlength (neko bsd)
>   5. Re: ignore maxlength (Mike Williams)
> 
> 
> ----------------------------------------------------------------------
> 
> Message: 1
> Date: Thu, 14 Jul 2005 10:13:48 +0900 (JST)
> From: neko bsd <[EMAIL PROTECTED]>
> Subject: Re2: [Selenium-users] Verify A tag.
> To: selenium-users@lists.public.thoughtworks.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=iso-2022-jp
> 
> Hello.
> Thank you.
> 
> > >I want to check A tag.
> > >
> > ><a href=foo>bar</a>
> > >I hope check foo and bar.
> > >What can I do?
> > >
> > >
> > How will you identify the link? Say it had a unique id,
> e.g.
> >
> > <a id="fooLink" href="foo">bar</a>
> >
> > then you can
> >
> > | verifyAttribute | [EMAIL PROTECTED] | foo |
> > | verifyText | fooLink | bar |
> 
> Page that I want to check don't have id or name attribute.
> And I can add it.
> 
> But, I use clickAndWait and VerifyUrl.
> Because, The problem was solved.
> 
> Thank you very much.
> 
> >
> > --
> > cheers, MikeW
> 
> 
> __________________________________
> Save the earth
> http://pr.mail.yahoo.co.jp/ondanka/
> 
> 
> 
> ------------------------------
> 
> Message: 2
> Date: Thu, 14 Jul 2005 10:18:35 +0900 (JST)
> From: neko bsd <[EMAIL PROTECTED]>
> Subject: [Selenium-users] All Tests
> To: selenium-users@lists.public.thoughtworks.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=iso-2022-jp
> 
> Hello.
> 
> I often ues All Tests.
> 
> There are a lot of test cases.
> 
> Can you teset from a case on the way of alot of test cases
> that are?
> Moreover, it will come to be able to do?
> 
> I hope.
> 
> __________________________________
> Save the earth
> http://pr.mail.yahoo.co.jp/ondanka/
> 
> 
> 
> ------------------------------
> 
> Message: 3
> Date: Thu, 14 Jul 2005 11:26:15 +1000
> From: Mike Williams <[EMAIL PROTECTED]>
> Subject: Re: [Selenium-users] All Tests
> To: selenium-users@lists.public.thoughtworks.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-2022-JP
> 
> neko bsd wrote:
> 
> >Can you teset from a case on the way of alot of test cases
> >that are?
> >Moreover, it will come to be able to do?
> >
> >
> Apologies, neko, but I really don't understand your question. Can you
> rephrase it, and/or provide an example?
> 
> --
> cheers, MikeW                            http://www.dogbiscuit.org/mdub/
> 
> 
> 
> ------------------------------
> 
> Message: 4
> Date: Thu, 14 Jul 2005 12:56:30 +0900 (JST)
> From: neko bsd <[EMAIL PROTECTED]>
> Subject: [Selenium-users] ignore maxlength
> To: selenium-users@lists.public.thoughtworks.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=iso-2022-jp
> 
> Hello.
> 
> TestRunner ignore maxlength.
> 
> <form>
> ID:
> <input name="login" size="35" value=""><br>
> Passwd:
> <input name="passwd" size="17" maxlength="3"
> type="password">
> </form>
> 
> It enters by three characters or more when I execute the
> following command.
> 
> | type | passwd | hogehoge |
> 
> How should I do to do the test that enters only up to
> three characters?
> 
> Will you become it somehow?
> 
> -- neko bsd
> 
> 
> __________________________________
> Save the earth
> http://pr.mail.yahoo.co.jp/ondanka/
> 
> 
> 
> ------------------------------
> 
> Message: 5
> Date: Thu, 14 Jul 2005 14:10:44 +1000
> From: Mike Williams <[EMAIL PROTECTED]>
> Subject: Re: [Selenium-users] ignore maxlength
> To: selenium-users@lists.public.thoughtworks.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-2022-JP
> 
> neko bsd wrote:
> 
> > TestRunner ignore maxlength.
> 
> Most likely true, because it sets the value via JavaScript, rather than
> by actually simulating keyboard use.
> 
> > It enters by three characters or more when I execute the following
> > command.
> >
> > | type | passwd | hogehoge |
> >
> > How should I do to do the test that enters only up to three
> > characters?
> 
> How about
> 
> | assertAttribute | [EMAIL PROTECTED] | 3 |
> 
> --
> cheers, MikeW http://www.dogbiscuit.org/mdub/
> 
> 
> 
> ------------------------------
> 
> _______________________________________________
> Selenium-users mailing list
> Selenium-users@lists.public.thoughtworks.org
> http://lists.public.thoughtworks.org/mailman/listinfo/selenium-users
> 
> 
> End of Selenium-users Digest, Vol 9, Issue 13
> *********************************************
>
_______________________________________________
Selenium-users mailing list
Selenium-users@lists.public.thoughtworks.org
http://lists.public.thoughtworks.org/mailman/listinfo/selenium-users

Reply via email to