コード例 #1
0
def i_wont_be_able_to_see_the_surrender_button(driver):
    text = ApplicationPage(driver).get_text_of_case_buttons()
    assert "surrender" not in text.lower()
    assert "copy" in text.lower()
コード例 #2
0
def edit_button_not_present(driver):
    text = ApplicationPage(driver).get_text_of_case_buttons()
    assert "edit" not in text.lower()
コード例 #3
0
def i_wont_be_able_to_see_the_withdraw_button(driver):
    text = ApplicationPage(driver).get_text_of_case_buttons()
    assert "withdraw" not in text.lower()
    assert "copy" in text.lower()