예제 #1
0
파일: web_steps.py 프로젝트: Coderic/jupo
def assert_single_selected(step, option_name, select_name):
  option_box = find_option(world.browser, select_name, option_name)
  assert_true(step, option_box.is_selected())
예제 #2
0
파일: web_steps.py 프로젝트: simzen85/jupo
def assert_single_selected(step, option_name, select_name):
    option_box = find_option(world.browser, select_name, option_name)
    assert_true(step, option_box.is_selected())
예제 #3
0
파일: web_steps.py 프로젝트: Coderic/jupo
def select_single_item(step, option_name, select_name):
  with AssertContextManager(step):
    option_box = find_option(world.browser, select_name, option_name)
    option_box.click()
예제 #4
0
파일: web_steps.py 프로젝트: simzen85/jupo
def select_single_item(step, option_name, select_name):
    with AssertContextManager(step):
        option_box = find_option(world.browser, select_name, option_name)
        option_box.click()