2

Selenium RC の ruby​​ ドライバー用の、、、 ... のような気の利いたSelenium on Railsメソッドの実装はありますか?wait_for_visibleassert_not_text_present

そうでない場合、wait_for_visible のようなものをどのように実装しますか?

4

1 に答える 1

4

私は自分の問題を解決しました。

Git Hub リポジトリで公式の Ruby クライアントを見つけました

このソリューションを書いたので、requireこのコードだけで、すべての便利なwait_for_*, assert_*, assert_not_*, wait_for_not_*, verify_*, and verify_not_*コマンドを使用できます。

#need this for starts_with? and camelize
require 'activesupport'
module Selenium
  module Client
    class Driver
      def method_missing(method, *args)
        method_prefixes = %w(wait_for wait_for_not assert_ assert_not verify verify_not store)
        method_name = method.to_s

        prefix = method_prefixes.find {|pre| method_name.starts_with?(pre)}

        #if the method starts with a prefix, camelize the name.
        if(prefix)
          string_command method_name.camelize(:lower), *args
        else
          super *args
        end
      end
    end
  end
end
于 2008-10-17T10:07:55.023 に答える