如何优化此 Selenium WebDriver 代码(Linq?)

发布于 2024-12-08 18:40:56 字数 516 浏览 0 评论 0原文

我是 Selenium 和 C# 的新手。

我知道这段代码不是最佳的,你能建议我如何更快更短地编写这样的东西吗?

基本上我正在寻找一个按钮,其 href 包含“addNewProduct”。

        var addButtons = _driver.FindElements(By.LinkText("Add"));
        IWebElement addNewProductButton = null;

        foreach (IWebElement button in addButtons) {
            if (button.GetAttribute("href").Contains("addNewProduct")){
                addNewProductButton = button;
                break;
            }
        }

        addNewProductButton.Click();

I'm new to Selenium and C#.

I know this code is not optimal, can you advise how I can write such things quicker and shorter?

Basically I am searching for a button, href of which contains "addNewProduct".

        var addButtons = _driver.FindElements(By.LinkText("Add"));
        IWebElement addNewProductButton = null;

        foreach (IWebElement button in addButtons) {
            if (button.GetAttribute("href").Contains("addNewProduct")){
                addNewProductButton = button;
                break;
            }
        }

        addNewProductButton.Click();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水中月 2024-12-15 18:40:56

使用 XPath 或 CSS 选择器。

XPath

IWebElement btnAdd = _driver.FindElement(By.XPath("//a[contains(@href, 'addNewProduct')]"));

CSS 选择器

IWebElement btnAdd = _driver.FindElement(By.CssSelector("a[href*='addNewProduct']"));

我推荐 CSS 选择器,因为它们更快并且语法更简洁。

Make use of XPath or CSS Selector.

XPath

IWebElement btnAdd = _driver.FindElement(By.XPath("//a[contains(@href, 'addNewProduct')]"));

CSS Selector

IWebElement btnAdd = _driver.FindElement(By.CssSelector("a[href*='addNewProduct']"));

I recommend CSS Selector since they are faster and the syntax is more concise.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文