我想定位一组元素,但实际上要实现的是,定时轮巡判断该组元素父元素的兄弟元素中的一个class状态。
现在卡在,通过python+selenium获取该元素组后,如何遍历并通过JS来操作该元素。
代码如下:
#获取该组元素
itemAll=bs.find_elements_by_css_selector('.h_scorm_content')
#遍历
for x in itemAll:
item=x
#先判断一次该元素的class状态
state=bs.execute_script('return $(arguments[0]).parentNode.parentNode.firstChild.getAttribute("class")=="scorm completed",item')
while state==True:
#每隔10秒检测一次,并再次获取state
time.sleep(10)
state=bs.execute_script('return $(arguments[0]).parentNode.parentNode.firstChild.getAttribute("class")=="scorm completed",item')
continue
已经解决了,JS可以获取python+selenium的传参,通过如下方法