chore: fix 1x1 chat verification
This commit is contained in:
parent
8086e77077
commit
debae1e5f6
|
@ -146,7 +146,7 @@ def test_1x1_chat(multiple_instances):
|
||||||
with step(f'User {user_one.name}, add reaction to the last message and verify it was added'):
|
with step(f'User {user_one.name}, add reaction to the last message and verify it was added'):
|
||||||
occurrence = random.randint(1, 6)
|
occurrence = random.randint(1, 6)
|
||||||
message.open_context_menu_for_message().add_reaction_to_message(occurrence)
|
message.open_context_menu_for_message().add_reaction_to_message(occurrence)
|
||||||
assert driver.waitFor(lambda: EMOJI_PATHES[occurrence - 1] == message.get_emoji_reactions_pathes()[0],
|
assert driver.waitFor(lambda: EMOJI_PATHES[occurrence - 1] == str(message.get_emoji_reactions_pathes()[0]),
|
||||||
timeout),\
|
timeout),\
|
||||||
f"Emoji reaction is not correct"
|
f"Emoji reaction is not correct"
|
||||||
main_window.hide()
|
main_window.hide()
|
||||||
|
@ -155,7 +155,7 @@ def test_1x1_chat(multiple_instances):
|
||||||
aut_two.attach()
|
aut_two.attach()
|
||||||
main_window.prepare()
|
main_window.prepare()
|
||||||
message = chat.find_message_by_text(chat_message_reply, 0)
|
message = chat.find_message_by_text(chat_message_reply, 0)
|
||||||
assert driver.waitFor(lambda: EMOJI_PATHES[occurrence - 1] == message.get_emoji_reactions_pathes()[0],
|
assert driver.waitFor(lambda: EMOJI_PATHES[occurrence - 1] == str(message.get_emoji_reactions_pathes()[0]),
|
||||||
timeout),\
|
timeout),\
|
||||||
f"Emoji reaction is not correct"
|
f"Emoji reaction is not correct"
|
||||||
main_window.hide()
|
main_window.hide()
|
||||||
|
|
Loading…
Reference in New Issue