自定義Watir可識別標籤[Z重要!!!]
> 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@]
> 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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 自定義標籤【迭代標籤】薦
- 自定義標籤FlowTagLayout
- ThinkPHP自定義標籤PHP
- java自定義標籤Java
- spring 自定義標籤Spring
- 建立自定義標籤庫
- jQuery Mobile 自定義標籤jQuery
- ViewPager之標籤的自定義Viewpager
- 關於自定義標籤庫
- 有關自定義標籤庫
- 深入淺出自定義標籤(三)操作標籤體薦
- 08.Django自定義模板,自定義標籤和自定義過濾器Django過濾器
- JSP 自定義標籤介紹JS
- 【14】vue.js — 自定義標籤Vue.js
- 自定義分頁標籤詳解
- spring2自定義標籤Spring
- 自定義標籤出現問題
- JSP自定義標籤之三:為標籤新增屬性JS
- jQuery自定義標籤程式碼例項jQuery
- JSP第六篇【自定義標籤之傳統標籤】JS
- Eclipse預設標籤TODO,XXX,FIXME和自定義標籤Eclipse
- JSP自定義標籤就是如此簡單JS
- 擴充spring元件之自定義標籤Spring元件
- 記錄一種自定義標籤的用法
- jsp如何自定義tag的標籤庫?JS
- JSP自定義標籤系列---rtexprvalue屬性JS
- 自定義html標籤和表單屬性HTML
- Django自定義模板標籤與過濾器Django過濾器
- 聊聊自定義SPI如何使用自定義標籤注入到spring容器中Spring
- Android自定義控制元件之自定義ViewGroup實現標籤雲Android控制元件View
- 實戰練習之Jsp自定義標籤JS
- jsp自定義標籤系列之---用法實力JS
- 求助:如何中斷jsf中多個自定義標籤中的其他標籤JS
- jsp的三種自定義標籤 寫法示例JS
- 急急急急!Struts自定義標籤html:text 問題HTML
- 基於Spring的可擴充套件Schema進行開發自定義配置標籤支援Spring套件
- Django5關於 自定義過濾器和標籤Django過濾器
- spring原始碼深度解析— IOC 之 自定義標籤解析Spring原始碼