我们如何执行添加类到一个特定的元素?
我尝试了javascript中的classList.add
方法,但没有运气😞
await driver.findElement(By.css(".promotion-code-group.promo-shown .promo-selector")).classList.add("show");
TypeError: Cannot read property 'add' of undefined
我需要你的知识 selenium js我希望你们能指导我通过这一点。谢谢你们提前家伙!
1条答案
按热度按时间abithluo1#
可以使用
execute_script()
函数编辑元素的类列表。在
setAttribute()
的第二个参数中,应该放入现有的类和新的类: