I hope somebody could point me in the right direction. We're using Selenium Webdriver 2.28 with Internet Explorer version 8.
Our tests pass through the below method with the locator parameter is {By.XPath: //body}
private IWebElement WaitAndGetElement(By locator)
{
var wait = new WebDriverWait(_driver, TimeSpan.FromSeconds(Constants.DefaultWaitTimeSecs));
var elementToWaitFor = wait.Until(driver => driver.FindElement(locator));
return elementToWaitFor;
}
When the code hits that method. The exception below is thrown. This problem is quite reproducible with IE. We do not encounter this error with Chrome or FireFox.
If anyone could point us in the right direction, we would be very grateful.
Many thanks. Christian Clarke
OpenQA.Selenium.InvalidSelectorException : The xpath expression '//body' cannot be evaluated or does notresult in a WebElement (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 156 milliseconds For documentation on this error, please visit: http://seleniumhq.org/exceptions/invalid_selector_exception.html
Build info: version: '2.28.0', revision: '18309', time: '2012-12-11 20:21:18' System info: os.name: 'Windows 2003', os.arch: 'x86', os.version: '5.2', java.version: '1.6.0_31' Session ID: c72ebe1d-e7f0-4fdb-aab8-9f86b374a89a
Driver info: org.openqa.selenium.ie.InternetExplorerDriver Capabilities [{platform=WINDOWS, javascriptEnabled=true, cssSelectorsEnabled=true, handlesAlerts=true, browserName=internet explorer, nativeEvents=true, takesScreenshot=true, version=8}]

findElement()is invoked at one particular moment during page load. If you can reproduce it reliably, please file a bug or just add it here, I'll gladly try to help! – Slanec Jan 16 at 17:38