I am currently using Selenium on Python to automate some stuff, and what I'd like to do is modify a specific part of an element on the source code when inspecting it.
Specifically, I want to replace Blur(12px) in the following code to Blur(0px), to remove the blurriness of the pictures:
<div class="Bdrs(8px) Bgz(cv) Bgp(c) Ov(h) StretchedBox Ir(p) Cnt($blank)::a StretchedBox::a Bg($inherit)::a Scale(1.3)::a Scale(1.2)::a--s Blur(12px)::a" style="background-image: url("https://preview.(...).com/); background-position: 50% 100%; background-size: auto 100.952%;"></div>
I am not too sure of how this can be done, and although I have done my research I was not able to find a proper solution to the problem.