I have a problem with changing values ("xxxx", "yyyy") I have already try:
document.querySelector('.sum_1Ux--VGpXx').innerHTML = 'New Value';
and
document.querySelector('.balance_1EVI0wwOHO').innerHTML = 'New Value';
but this way has no effect. Please help, what I'm doing wrong?
Have you tried to check that you're able to target the element..??
Although, using innerHtml to get the text and set the text isn't a good practice.
Try using:
document.querySelector('.sum_1Ux--VGpXx').textContent = 'New Value';
document.querySelector('.balance_1EVI0wwOHO').textContent = 'New Value';