选择没有id的表并迭代所有href

本文关键字:迭代 href id 选择 | 更新日期: 2023-09-27 18:28:54

我有这个HTML,有两个Dropbox和一个按钮。

<html>
<body>
<table>
<tr>
	<td>
		<select id="dep1" >
			<option>Info</option>
			<option>Mecanique</option>
		</select>
	</td>
	<td>
		<select id="dep2" >
			<option value="001">Glid</option>
			<option value="002">ASR</option>
			<option value="003">Electronique</option>
		</select>
	</td>
	<td>
		<input id="selection" type="submit" onclick="return check2()" value="Go"></input>
	</td>
</tr>
</table
</body>
</html>

这个想法是,当我在第一个Dropbox中选择Info时,第二个Dropbox将显示Glid和ASR,然后当我点击按钮时,它将打开另一个选项卡并转到另一个网站。现在我试着去网站,选择第一个dropbox,并将第一个dropbow的所有结果保存在txt文件中

IWebDriver driver;
        string url = "My site";
        driver = new ChromeDriver();
        driver.Navigate().GoToUrl(url);
        new SelectElement(driver.FindElement(By.Id("dep1"))).SelectByText("Info");
        var result = driver.FindElement(By.Id("dep2")).Text;
        File.WriteAllText("result.txt", result);

我的问题是,我如何将选项中存在的值添加到文本中,并显示如下:

001滑翔
002 ASR

对于第二个问题,我有一些其他的HTML代码,比如:

<html>
<body>
<table>
<tr>
<td>
<a href="site1">Glid</a>
</td>
<td>
<a href="site1">ASR</a>
</td>
<td>
<a href="site1">Electronique</a>
</td>
</tr>
</table>
</body>
</html>

所以这是同样的问题,我如何在不知道表id的情况下获得所选选项的href?

选择没有id的表并迭代所有href

您可以迭代表元素:

IList<IWebElement> options = driver.FindElements(By.CssSelector("#dep2 > option")); //get all option tags from the table
IList<IWebElement> hrefs = driver.FindElements(By.TagName("a")); //get all hrefs
foreach (IWebElement option in options)
{
    string value = option.GetAttribute("value");
    string text = option.Text;
    foreach (IWebElement href in hrefs)
    {
        if (href.Text.equals(text))
        {
            // do what you need with the href
        }
    }
}