更改 div _rmc 值

Changing div _rmc values

在我的 div TAG 中有一个 _rmc 值。 里面有一个名为 PreferValueIndex 的变量,我需要将该值更改为选项之一 (1, -1, -9999) 1 = true , -1 false , -9999 块。 我需要一些关于如何做到这一点的帮助。以及有关 _rmc 含义的解释。

使用:

import logging
from time import sleep
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import WebDriverWait

您可以像这样更改属性:

driver.execute_script("arguments[0].setAttribute('_rmc','your new value')", element)

其中 element 是网络元素(div)

更新:

value = "relative; background-color: rgb(215, 14, 82); cursor: url(""Images/cant.cur"")"
driver.execute_script(f"arguments[0].setAttribute('_rmc','{value}')", element)