Last active
February 2, 2023 23:24
-
-
Save bengry/b5fa258ccdeba5325513a1aa8bb82a86 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Wolt Cibus Autoselect | |
// @namespace https://bengr.dev/ | |
// @version 0.1 | |
// @description Automatically choose Cibus payment method in Wolt and turns off the "Use Wolt Credits" Toggle | |
// @author bengry | |
// @match https://wolt.com/*/checkout | |
// @license MIT | |
// @grant none | |
// ==/UserScript== | |
(async function() { | |
'use strict'; | |
const getUsingCreditsIndicator = () => document.querySelector('[data-test-id="Order.WoltCredits"]'); | |
const selectPaymentMethodSelector = '[data-test-id="PaymentMethods.SelectedPaymentMethod"]'; | |
const cibusPaymentMethodSelector = '[data-test-id="PaymentMethod-cibus"]'; | |
const creditsButtonSelector = '[data-test-id="CreditsToggle"] *:has([draggable]'; | |
const paymentMethodButton = await waitForElement(selectPaymentMethodSelector); | |
paymentMethodButton.click(); | |
const cibusPaymentMethodButton = await waitForElement(cibusPaymentMethodSelector); | |
cibusPaymentMethodButton.click(); | |
await waitForElement('[data-test-id="CreditsToggle"]') | |
if (getUsingCreditsIndicator() != null) { | |
const useCreditsButton = await waitForElement(creditsButtonSelector); | |
useCreditsButton.click(); | |
} | |
})(); | |
/** | |
* Taken from https://stackoverflow.com/a/61511955 | |
**/ | |
function waitForElement(selector) { | |
return new Promise(resolve => { | |
if (document.querySelector(selector)) { | |
return resolve(document.querySelector(selector)); | |
} | |
const observer = new MutationObserver(mutations => { | |
if (document.querySelector(selector)) { | |
resolve(document.querySelector(selector)); | |
observer.disconnect(); | |
} | |
}); | |
observer.observe(document.body, { | |
childList: true, | |
subtree: true | |
}); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment