I want to find the element of this link “Dropchord” in <h2>
<a class="a-link-normal
s-access-detail-page a-text-normal"
title="Dropchord"
href="http://www.amazon.de/Double-Fine-Productions-Dropchord/dp/B00E0OK2X2/ref=sr_1_2?s=mobile-apps&ie=UTF8&qid=1427809716&sr=1-2&keywords=AS-Productions">
<h2 class="a-size-base a-color-null
s-inline s-access-title a-text-normal">
Dropchord
</h2></a>
{
IList<IWebElement> AppName = select.FindElements(By.CssSelector("//ul[@id='s-results-list-atf']//h2[text()='Dropchord']"));
OR
IList<IWebElement> AppName = select.FindElements(By.XPath("//ul[@id='s-results-list-atf']//h2[text( )='Dropchord']"));
IList<IWebElement> AppName = driver.FindElements(By.XPath("//h2[@ class='a-size-base a-color-null s-inline s-access-title a-text-normal']"));