@sabrinatseng I just discovered that too by accident:
https://docs.microsoft.com/en-us/microsoft-edge/dev-guide/device/payment-request-api
@rsolomakhin ^^^ "Test Mode in Microsoft Edge"...
```JS
var supportedInstruments = [{
supportedMethods: ['basic-card'],
data: {
supportedNetworks: ['visa', 'mastercard', 'amex'],
supportedTypes: ['credit']
//for test transactions uncomment the test flag below
//environment: 'TEST'
}
}];
```
It doesn't exactly allow us to automate things, but it's something.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/payment-request/issues/613#issuecomment-329362665