Skip to content

Commit

Permalink
More E2E
Browse files Browse the repository at this point in the history
  • Loading branch information
darkwing committed Jun 23, 2023
1 parent 94f5bda commit 5a55585
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/nft/send-nft.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ describe('Send NFT', function () {
// When transaction complete, check the send NFT is displayed in activity tab
await driver.wait(async () => {
const confirmedTxes = await driver.findElements(
'.transaction-list__completed-transactions .transaction-list-item',
'.transaction-list__completed-transactions .activity-list-item',
);
return confirmedTxes.length === 1;
}, 10000);

const sendNftItem = await driver.findElement({
css: 'h2',
css: '[data-testid="activity-list-item-action"]',
text: 'Send Test Dapp NFTs',
});
assert.equal(await sendNftItem.isDisplayed(), true);
Expand Down

0 comments on commit 5a55585

Please sign in to comment.