let's say I have an element:
<div>
<img src='src1'>
</div>
and after some time src
changes to some other link
so how to I wait for it (or any property in general) to change?
maybe something like this:
await driver.wait(until.elementAttributeChanged(el,'src'),3000);