1

我正在使用Selenium Webdriver绑定C#并尝试从旧的 FirefoxDriver(FF 47 之前)切换到新的Marionette driver(FF47 及更高版本),并且在一些似乎随着Selenium 2.53.1FF 47.0.1.

现在唯一的问题是在选择标签下选择选项标签似乎有问题。以下代码适用于我正在测试的所有其他浏览器(FF < 46、Chrome、IE)。我将以下参数传递到我的dropdownSelect函数中。选择IWebElement和要搜索的文本。这是函数定义:

public static void dropdownSelect(IWebDriver driver, IWebElement inObject, string inText)

我已经尝试SelectElement()像使用所有其他浏览器一样使用该类

select = new SelectElement(inObject);

//select the matching element
select.SelectByText(inText);

我还尝试获取选项的集合并使用两者滚动浏览集合Click()

IJavaScriptExecutor js = driver as IJavaScriptExecutor;
ReadOnlyCollection<IWebElement> optDropdown;

optDropdown = inObject.FindElements(By.TagName("option"));

foreach (IWebElement thsItem in optDropdown)
 {
   //check for matching text
    if (thsItem.Text == inText)
     {
       // 1/4 second wait
       Thread.Sleep(250);

       thsItem.Click()

       //exit foreach loop
       break;
     }
 }

javascript点击thsItem.Click()代码段

//click option element
js.ExecuteScript("arguments[0].click();", thsItem);

没有选择任何内容,也没有抛出任何错误或异常。它只是继续快乐地前进,没有选择任何东西

我做错了什么,还是新的 Marionette 驱动程序仍在解决这个问题?

4

2 回答 2

0

我只是通过使用类似于上面描述的 Javascript 来解决这个问题。由于在此下拉列表更改时存在依赖关系,因此我只是在 Selenium 中找到它时选择了适当的选项,并且即使使用 Javascript 也触发了 onchange

这是选择框的 HTML

<select class="T2FormControl"   id="ctl00_pageContent_TableList_T2DropDownList_DropDownList" onchange="javascript:setTimeout('__doPostBack(\'ctl00$pageContent$TableList$T2DropDownList$DropDownList\',\'\')', 0)" name="ctl00$pageContent$TableList$T2DropDownList$DropDownList">

以及执行该操作的 Javascript

//click option element and for change event
js.ExecuteScript("arguments[0].selected = true;" +
                 "var element=arguments[1];" +
                 "var event=document.createEvent(\"HTMLEvents\");" + 
                 "event.initEvent('change', false, true);" +
                 "element.dispatchEvent(event);", thsItem, inObject);

IWebElement thsItem 是选择的选项,IWebElement inObject 是下拉列表的选择标签

似乎是一种迂回的方式来执行其他 Selenium 驱动程序自动执行的操作,但它确实有效

于 2016-08-12T12:13:54.470 回答
0

尝试ExecuteScript()如下整个操作:-

public static void dropdownSelect(IWebDriver driver, IWebElement inObject, string inText) {

   IJavaScriptExecutor js = driver as IJavaScriptExecutor;
   js.ExecuteScript("var select = arguments[0]; for(var i = 0; i < select.options.length; i++){ if(select.options[i].text == arguments[1]){ select.options[i].selected = true; } }", inObject, inText);

}

希望它会工作...... :)

于 2016-07-08T13:04:37.860 回答