We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f17bbde commit 165beabCopy full SHA for 165beab
test/e2e/tests/send-edit.spec.js
@@ -73,6 +73,8 @@ describe('Editing Confirm Transaction', function () {
73
await driver.clickElement(
74
By.xpath(`//button[contains(text(), 'Next')]`),
75
);
76
+
77
+ // has correct updated value on the confirm screen the transaction
78
const editedTransactionAmounts = await driver.findElements(
79
By.css('.currency-display-component__text'),
80
@@ -82,6 +84,7 @@ describe('Editing Confirm Transaction', function () {
82
84
const editedTransactionFee = editedTransactionAmounts[1];
83
85
assert.equal(await editedTransactionFee.getText(), '0.0008');
86
87
+ // confirms the transaction
88
89
By.xpath(`//button[contains(text(), 'Confirm')]`),
90
0 commit comments