web-dev-qa-db-fra.com

Comment sélectionner une option dans le menu déroulant à l'aide de Selenium WebDriver C #?

J'essayais pour mon test Web en sélectionnant une option. Un exemple peut être trouvé ici: http://www.tizag.com/phpT/examples/formex.php

Tout fonctionne très bien sauf la sélection d'une partie optionnelle. Comment sélectionner une option par valeur ou par étiquette?

Mon code:

using OpenQA.Selenium.Firefox;
using OpenQA.Selenium;
using System.Collections.ObjectModel;
using System.Text.RegularExpressions;
using System.Threading;
using System.Diagnostics;
using System.Runtime.InteropServices;

class GoogleSuggest
{
    static void Main()
    {
        IWebDriver driver = new FirefoxDriver();

        //Notice navigation is slightly different than the Java version
        //This is because 'get' is a keyword in C#
        driver.Navigate().GoToUrl("http://www.tizag.com/phpT/examples/formex.php");
        IWebElement query = driver.FindElement(By.Name("Fname"));
        query.SendKeys("John");
        driver.FindElement(By.Name("Lname")).SendKeys("Doe");
        driver.FindElement(By.XPath("//input[@name='gender' and @value='Male']")).Click();
        driver.FindElement(By.XPath("//input[@name='food[]' and @value='Chicken']")).Click();
        driver.FindElement(By.Name("quote")).Clear();
        driver.FindElement(By.Name("quote")).SendKeys("Be Present!");
        driver.FindElement(By.Name("education")).SendKeys(Keys.Down + Keys.Enter); // working but that's not what i was looking for
        // driver.FindElement(By.XPath("//option[@value='HighSchool']")).Click(); not working
        //  driver.FindElement(By.XPath("/html/body/table[2]/tbody/tr/td[2]/table/tbody/tr/td/div[5]/form/select/option[2]")).Click(); not working
        // driver.FindElement(By.XPath("id('examp')/x:form/x:select[1]/x:option[2]")).Click(); not working

        }
}
67
motto

Vous devez créer un objet élément de sélection à partir de la liste déroulante.

 using OpenQA.Selenium.Support.UI;

 // select the drop down list
 var education = driver.FindElement(By.Name("education"));
 //create select element object 
 var selectElement = new SelectElement(education);

 //select by value
 selectElement.SelectByValue("Jr.High"); 
 // select by text
 selectElement.SelectByText("HighSchool");

Plus d'infos ici

140
Matthew Kelly

Une autre façon pourrait être celle-ci:

driver.FindElement(By.XPath(".//*[@id='examp']/form/select[1]/option[3]")).Click();

et vous pouvez modifier l'index dans l'option [x] en modifiant x en fonction du nombre d'éléments que vous souhaitez sélectionner.

Je ne sais pas si c'est le meilleur moyen mais j'espère que cela vous aidera.

8
Juan

Ajouter un point à cela. J'ai rencontré un problème selon lequel l'espace de noms OpenQA.Selenium.Support.UI n'était pas disponible après l'installation de la liaison Selenium.NET dans le projet C #. Nous avons découvert par la suite que nous pouvions facilement installer la dernière version des classes de support de Selenium WebDriver en exécutant la commande Install-Package Selenium.Support Dans la console NuGet Package Manager.

3
Ravishankar S

Pour sélectionner une option via le texte; 

(new SelectElement(driver.FindElement(By.XPath(""))).SelectByText("");

Pour sélectionner une option via valeur: 

 (new SelectElement(driver.FindElement(By.XPath(""))).SelectByValue("");
3
Madhu

Vous devez juste passer la valeur et entrer la clé:

driver.FindElement(By.Name("education")).SendKeys("Jr.High"+Keys.Enter);
1
Vineet Patel

Voici comment cela fonctionne pour moi (sélection du contrôle par ID et des options par texte):

protected void clickOptionInList(string listControlId, string optionText)
{
     driver.FindElement(By.XPath("//select[@id='"+ listControlId + "']/option[contains(.,'"+ optionText +"')]")).Click();
}

utilisation:

clickOptionInList("ctl00_ContentPlaceHolder_lbxAllRoles", "Tester");
1
serop

Code Selenium WebDriver C # permettant de sélectionner un élément dans le menu déroulant:

IWebElement EducationDropDownElement = driver.FindElement(By.Name("education"));
SelectElement SelectAnEducation = new SelectElement(EducationDropDownElement);

Il existe 3 façons de sélectionner un élément du menu déroulant: i) Sélectionner par texte ii) Sélectionner par index iii) Sélectionner par valeur

Sélection par texte:

SelectAnEducation.SelectByText("College");//There are 3 items - Jr.High, HighSchool, College

Sélection par index:

SelectAnEducation.SelectByIndex(2);//Index starts from 0. so, 0 = Jr.High 1 = HighSchool 2 = College

Sélection par valeur:

SelectAnEducation.SelectByValue("College");//There are 3 values - Jr.High, HighSchool, College
1
Ripon Al Wasim
IWebElement element = _browserInstance.Driver.FindElement(By.XPath("//Select"));
IList<IWebElement> AllDropDownList = element.FindElements(By.XPath("//option"));
int DpListCount = AllDropDownList.Count;
for (int i = 0; i < DpListCount; i++)
{
    if (AllDropDownList[i].Text == "nnnnnnnnnnn")
    {
        AllDropDownList[i].Click();
        _browserInstance.ScreenCapture("nnnnnnnnnnnnnnnnnnnnnn");
    }
}
0
james

Si vous recherchez n'importe quelle sélection dans la liste déroulante, je trouve également la méthode "sélectionner par index" très utile.

if (IsElementPresent(By.XPath("//select[@id='Q43_0']")))
{
    new SelectElement(driver.FindElement(By.Id("Q43_0")))**.SelectByIndex(1);** // This is selecting first value of the drop-down list
    WaitForAjax();
    Thread.Sleep(3000);
}
else
{
     Console.WriteLine("Your comment here);
}
0
user6164019
 var select = new SelectElement(elementX);
 select.MoveToElement(elementX).Build().Perform();

  var click = (
       from sel in select
       let value = "College"
       select value
       );
0
Code Disciple