Skip to content

Commit

Permalink
scrollfix for bip44 firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
bowensanders committed Jul 21, 2023
1 parent b7e2e25 commit 4e6e37c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/e2e/snaps/test-snap-bip-44.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ describe('Test Snap bip-44', function () {
});
await driver.waitForSelector({ text: 'Install' });

await driver.clickElement('[data-testid="snap-install-scroll"]');
try {
await driver.clickElement('[data-testid="snap-install-scroll"]');
} catch (_) {
console.log('Missing scroll');
}

await driver.clickElement({
text: 'Install',
Expand Down

0 comments on commit 4e6e37c

Please sign in to comment.