自定義Watir可識別標籤[Z重要!!!]

CharlesCui發表於2008-04-03
> On Wed, Apr 2, 2008 at 8:19 AM, jennifer.gao
> wrote:
>
> > how can I click this string
> > "(+)" with watir?
>
> Because Watir does not yet support font tag, you will have to extend it.
> Fortunately, that is easy. Add code at the top of your script:
>
> module Watir
> class Font < NonControlElement
> TAG = 'font'
> end
> module Container
> def font(how, what)
> return Font.new(self, how, what)
> end
> end
> end
>
> And now Watir knows all about fonts!
>
> ie.font(:text, "(+)").click
>
> Watir rocks, or what?! :)
>
> Željko
> --
> ZeljkoFilipin.com[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9934490/viewspace-1001846/,如需轉載,請註明出處,否則將追究法律責任。

相關文章