OSDN Git Service

add selenium test code.
[quickedit/quick_edit.git] / test / selenium / pages / welcome.rb
1 #coding: utf-8
2
3 module QuickEdit
4   module Test
5     module Pages
6       class WelcomePage < Page
7         def initialize(driver, base_url, project)
8           super(driver, base_url, project)
9
10           find_element :css, "body[class='controller-welcome action-index']"
11         end
12       end
13     end
14   end
15 end
16