gpt4 book ai didi

javascript - 如何使用 selenium 在 C# 中编辑 Web 元素属性值

转载 作者:太空宇宙 更新时间:2023-11-04 15:47:27 25 4
gpt4 key购买 nike

示例:

<input type="text" id="cargo_q" autocomplete="off" value="5.5"/>
如何使用 selenium Web 驱动程序更改“value”属性的值

有没有类似的方法: IWebElement search_cargo =driver.FindElement(By.Id("cargo_q"))); search_cargo.setAttribute(属性名称,属性新值); ”?

最佳答案

使用JavascriptExecutor类:

JavascriptExecutor js = (JavascriptExecutor) driver; //Driver is the WebDriver object
js.executeScript("document.getElementById('cargo_q').setAttribute('value', '10')");

关于javascript - 如何使用 selenium 在 C# 中编辑 Web 元素属性值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43440861/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com