我有2个Dropbox和一个按钮的HTML。
<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>
我的想法是当我在1st Dropbox中选择Info时,第二个将显示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 Glid
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?
答案 0 :(得分:1)
您可以遍历表格元素:
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
}
}
}