removed log level testing for release build
Signed-off-by: Churikova Tetiana <churikova.tm@gmail.com>
This commit is contained in:
parent
2122c5518f
commit
2f53c7f914
|
@ -394,16 +394,9 @@ class TestProfileSingleDevice(SingleDeviceTestCase):
|
||||||
sign_in_view.create_user()
|
sign_in_view.create_user()
|
||||||
profile_view = sign_in_view.profile_button.click()
|
profile_view = sign_in_view.profile_button.click()
|
||||||
profile_view.advanced_button.click()
|
profile_view.advanced_button.click()
|
||||||
if 'release' in str(pytest_config_global['apk']):
|
for text in 'INFO', 'eth.prod':
|
||||||
# TODO: should be edited after showing some text in setting when log in disabled
|
if not profile_view.element_by_text(text).is_element_displayed():
|
||||||
if profile_view.log_level_setting.is_element_displayed():
|
self.errors.append('%s is not selected by default' % text)
|
||||||
self.errors.append('Log is not disabled')
|
|
||||||
if not profile_view.element_by_text('eth.prod').is_element_displayed():
|
|
||||||
self.errors.append('Fleet is not set to eth.prod')
|
|
||||||
else:
|
|
||||||
for text in 'INFO', 'eth.prod':
|
|
||||||
if not profile_view.element_by_text(text).is_element_displayed():
|
|
||||||
self.errors.append('%s is not selected by default' % text)
|
|
||||||
self.errors.verify_no_errors()
|
self.errors.verify_no_errors()
|
||||||
|
|
||||||
|
|
||||||
|
@ -849,10 +842,11 @@ class TestProfileMultipleDevice(MultipleDeviceTestCase):
|
||||||
device_1_home.add_contact(transaction_senders['A']['public_key'])
|
device_1_home.add_contact(transaction_senders['A']['public_key'])
|
||||||
|
|
||||||
device_2.just_fyi('check that messages appeared in 1-1 chat, public chats and new contacts are synced')
|
device_2.just_fyi('check that messages appeared in 1-1 chat, public chats and new contacts are synced')
|
||||||
if not device_2_profile.element_by_text(transaction_senders['A']['username']).is_element_displayed(30):
|
# TODO: blocked by 9805
|
||||||
self.errors.append(
|
# if not device_2_profile.element_by_text(transaction_senders['A']['username']).is_element_displayed(60):
|
||||||
'"%s" is not found in Contacts after adding when devices are paired' % transaction_senders['A'][
|
# self.errors.append(
|
||||||
'username'])
|
# '"%s" is not found in Contacts after adding when devices are paired' % transaction_senders['A'][
|
||||||
|
# 'username'])
|
||||||
|
|
||||||
device_2_profile.home_button.click()
|
device_2_profile.home_button.click()
|
||||||
if not device_2_home.element_by_text_part(public_chat_before_sync).is_element_displayed():
|
if not device_2_home.element_by_text_part(public_chat_before_sync).is_element_displayed():
|
||||||
|
|
|
@ -79,6 +79,8 @@ class TestTransactionDApp(SingleDeviceTestCase):
|
||||||
|
|
||||||
@marks.testrail_id(5743)
|
@marks.testrail_id(5743)
|
||||||
@marks.high
|
@marks.high
|
||||||
|
@marks.skip
|
||||||
|
# TODO: blocked by 10203
|
||||||
def test_send_two_transactions_in_batch_in_dapp(self):
|
def test_send_two_transactions_in_batch_in_dapp(self):
|
||||||
sender = transaction_senders['W']
|
sender = transaction_senders['W']
|
||||||
sign_in_view = SignInView(self.driver)
|
sign_in_view = SignInView(self.driver)
|
||||||
|
|
Loading…
Reference in New Issue