Code review comment for lp:~canonical-platform-qa/ubuntu-autopilot-tests/launcher_messaging_experience

Revision history for this message
Leo Arias (elopio) wrote :

103 + messaging_app = helpers.get_proxy_object_by_process_name(
104 + 'messaging-app',
105 + emulator_base=messaging_emulators.MainView
106 + )

Just as with Brendan's branch, the only emulator_base that we must be using is the one from the toolkit. Definitely not a MainView. There's something wrong here.

107 + messaging_app.start_new_message()
108 + messaging_app.type_contact_phone_num('3333333')
109 + messaging_app.type_message('Hello user!')
110 + messaging_app.click_send_button()

This needs to be wrapped in a helper on the messaging app that's called something like: def send_message(recipients, text)

review: Needs Fixing

« Back to merge proposal