1. <i id='E6dky'><tr id='E6dky'><dt id='E6dky'><q id='E6dky'><span id='E6dky'><b id='E6dky'><form id='E6dky'><ins id='E6dky'></ins><ul id='E6dky'></ul><sub id='E6dky'></sub></form><legend id='E6dky'></legend><bdo id='E6dky'><pre id='E6dky'><center id='E6dky'></center></pre></bdo></b><th id='E6dky'></th></span></q></dt></tr></i><div id='E6dky'><tfoot id='E6dky'></tfoot><dl id='E6dky'><fieldset id='E6dky'></fieldset></dl></div>
      <legend id='E6dky'><style id='E6dky'><dir id='E6dky'><q id='E6dky'></q></dir></style></legend>

    2. <small id='E6dky'></small><noframes id='E6dky'>

    3. <tfoot id='E6dky'></tfoot>

        • <bdo id='E6dky'></bdo><ul id='E6dky'></ul>

        如何设置“价值"?使用硒输入网页元素?

        How to set quot;valuequot; to input web element using selenium?(如何设置“价值?使用硒输入网页元素?)
          <bdo id='fBKuc'></bdo><ul id='fBKuc'></ul>

          <small id='fBKuc'></small><noframes id='fBKuc'>

            <tbody id='fBKuc'></tbody>

          1. <legend id='fBKuc'><style id='fBKuc'><dir id='fBKuc'><q id='fBKuc'></q></dir></style></legend>
          2. <tfoot id='fBKuc'></tfoot>

            <i id='fBKuc'><tr id='fBKuc'><dt id='fBKuc'><q id='fBKuc'><span id='fBKuc'><b id='fBKuc'><form id='fBKuc'><ins id='fBKuc'></ins><ul id='fBKuc'></ul><sub id='fBKuc'></sub></form><legend id='fBKuc'></legend><bdo id='fBKuc'><pre id='fBKuc'><center id='fBKuc'></center></pre></bdo></b><th id='fBKuc'></th></span></q></dt></tr></i><div id='fBKuc'><tfoot id='fBKuc'></tfoot><dl id='fBKuc'><fieldset id='fBKuc'></fieldset></dl></div>
                  本文介绍了如何设置“价值"?使用硒输入网页元素?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我的代码中有如下所示的元素:

                  I have element in my code that looks like this:

                  <input id="invoice_supplier_id" name="invoice[supplier_id]" type="hidden" value="">
                  

                  我想设置它的值,所以我用它的 xpath 创建了一个 web 元素:

                  I want to set its value, so I created a web element with it's xpath:

                   val test = driver.findElements(By.xpath("""//*[@id="invoice_supplier_id"]"""))
                  

                  但现在我没有看到设置值的选项...

                  but now I dont see an option to set the value...

                  推荐答案

                  使用 findElement 代替 findElements

                  driver.findElement(By.xpath("//input[@id='invoice_supplier_id'])).sendKeys("your value");
                  

                  driver.findElement(By.id("invoice_supplier_id")).sendKeys("value", "your value");
                  

                  或使用 JavascriptExecutor

                  WebElement element = driver.findElement(By.xpath("enter the xpath here")); // you can use any locator
                   JavascriptExecutor jse = (JavascriptExecutor)driver;
                   jse.executeScript("arguments[0].value='enter the value here';", element);
                  

                  (JavascriptExecutor) driver.executeScript("document.evaluate(xpathExpresion, document, null, 9, null).singleNodeValue.innerHTML="+ DesiredText);
                  

                  或(在 javascript 中)

                  driver.findElement(By.xpath("//input[@id='invoice_supplier_id'])).setAttribute("value", "your value")
                  

                  希望对你有帮助:)

                  这篇关于如何设置“价值"?使用硒输入网页元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Lucene Porter Stemmer not public(Lucene Porter Stemmer 未公开)
                  How to index pdf, ppt, xl files in lucene (java based or python or php any of these is fine)?(如何在 lucene 中索引 pdf、ppt、xl 文件(基于 java 或 python 或 php 中的任何一个都可以)?)
                  KeywordAnalyzer and LowerCaseFilter/LowerCaseTokenizer(KeywordAnalyzer 和 LowerCaseFilter/LowerCaseTokenizer)
                  How to search between dates (Hibernate Search)?(如何在日期之间搜索(休眠搜索)?)
                  How to get positions from a document term vector in Lucene?(如何从 Lucene 中的文档术语向量中获取位置?)
                  Java Lucene 4.5 how to search by case insensitive(Java Lucene 4.5如何按不区分大小写进行搜索)
                  • <small id='opZxC'></small><noframes id='opZxC'>

                      <bdo id='opZxC'></bdo><ul id='opZxC'></ul>
                      <tfoot id='opZxC'></tfoot>
                      <legend id='opZxC'><style id='opZxC'><dir id='opZxC'><q id='opZxC'></q></dir></style></legend>
                        <tbody id='opZxC'></tbody>

                          <i id='opZxC'><tr id='opZxC'><dt id='opZxC'><q id='opZxC'><span id='opZxC'><b id='opZxC'><form id='opZxC'><ins id='opZxC'></ins><ul id='opZxC'></ul><sub id='opZxC'></sub></form><legend id='opZxC'></legend><bdo id='opZxC'><pre id='opZxC'><center id='opZxC'></center></pre></bdo></b><th id='opZxC'></th></span></q></dt></tr></i><div id='opZxC'><tfoot id='opZxC'></tfoot><dl id='opZxC'><fieldset id='opZxC'></fieldset></dl></div>