TST: fix failing e2e due to currently high fees

This commit is contained in:
Overtorment 2020-12-18 14:23:48 +00:00
parent c2ae49c0bd
commit a01beaa834

View file

@ -548,6 +548,14 @@ describe('BlueWallet UI Tests', () => {
newInstance: true,
url: 'bitcoin:BC1QH6TF004TY7Z7UN2V5NTU4MKF630545GVHS45U7\\?amount=0.0001\\&label=Yo',
});
// setting fee rate:
const feeRate = 2;
await element(by.id('chooseFee')).tap();
await element(by.id('feeCustom')).tap();
await element(by.type('android.widget.EditText')).typeText(feeRate + '');
await element(by.text('OK')).tap();
try {
await element(by.id('CreateTransactionButton')).tap();
} catch (_) {}