UNPKG
@coinbase/onchaintestkit
Version:
latest (1.2.1)
placeholder (0.0.0)
1.2.1
1.2.0
1.1.0
1.0.0
0.0.0
End-to-end testing toolkit for blockchain applications, powered by Playwright
@coinbase/onchaintestkit
/
dist
/
src
/
wallets
/
MetaMask
/
pages
/
NotificationPage
/
actions
/
token.js
11 lines
(10 loc)
•
283 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
token
=
void
0
;
async
function
addNew
(
notificationPage
) {
// click confirm button
await
notificationPage.
getByRole
(
"button"
, {
name
:
"Confirm"
}).
click
(); }
exports
.
token
= { addNew, };