-1

I am trying to change the transform property on this particular website: https://www.weltsparen.de/etf-portfolio/WI04

I'm trying to set the first translate parameter to 0 instead of 275 with the selenium WebDriver and then probably run the website again, because I want to get another values from the graph showed in the figure bellow, and this parameters in the translate are the positions of the values.

Graph:

Graph

HTML:

<g class="Indicatorstyles__indicator--3lFtS" display="block" transform="translate(275,370)">

Is it possible?

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
vspredator
  • 33
  • 4

1 Answers1

0

You can easily set the first translate parameter to 0 instead of 275 using setAttribute() at the client-side using Selenium. However this change won't be updated to the server-side.

Hence, when you would run the website again i.e. refresh() or invoke get() the changes would be lost.


References

You can find a couple of relevant detailed discussions in:

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352