編集:
私のCSSSelectorは次のようなものです:(FFでは正常に動作しています)
for (int i = 1; i < _count; i++)
{
..................
..................
div#ctl00_ContentPlaceHolder1 table.gv tbody tr.item:nth-child(" + i + ") > td:nth-of-type(3)
..................
}
編集終了
FFでSelenium2.29とIE(8)およびFF(17.1)を使用していますが、すべてのテストケースに合格し、IEで実行すると、テストケースの大部分が失敗しました。エラーメッセージは次のとおりです。
Test method threw exception:
OpenQA.Selenium.WebDriverTimeoutException: Timed out after 30 seconds ---> OpenQA.Selenium.NoSuchElementException:
Unable to find element with css selector ==
div#ctl00_ContentPlaceHolder1 table.gv tbody tr.item:nth-child(1)> td:nth-of-type(3)
CSSSelectorを使用しています。
IEのCSSSelectorを変更する必要がありますか?