--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-user...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/397fdbf0-7ea0-4085-9f90-8d9652b6e9b1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
<div class="mailview" style="margin-right:18px;"> Hallo Benedikt, <br><br> bitte klicken Sie auf den untenstehenden Link, um die E-Mail-Adresse Ihres Battle.net-Accounts zu bestätigen: <br> <a href="https://eu.battle.net/account/email/confirm.xml?ticket=1v18LvamIWsf41sgz9%2F%2Bva9do0UOtAxSRXoT8q4CWW10eP1yw%2BDTnw7777aQFDCI%2B%2F1ZCzf%2Bh48XbWCa1e47hcPb2uFEJoHoCjlD3MTqbi95pfJlUMq3tPk6OFIp6BNK&style=lobby&ST=EU-b47a6c4e440cb7a259a57cc4017f1e13&info">https://eu.battle.net/account/email/confirm.xml?ticket=1v18LvamIWsf41sgz9%2F%2Bva9do0UOtAxSRXoT8q4CWW10eP1yw%2BDTnw7777aQFDCI%2B%2F1ZCzf%2Bh48XbWCa1e47hcPb2uFEJoHoCjlD3MTqbi95pfJlUMq3tPk6OFIp6BNK&style=lobby&ST=EU-b47a6c4e440cb7a259a57cc4017f1e13&info</a><br><br> Durch die Bestätigung Ihrer E-Mail haben Sie Zugang zu gesonderten Optionen Ihres Battle.net-Accounts, die eine Bestätigung erfordern. Insbesondere können Sie Ihre Spiele online registrieren und anschließend auf Ihrem Computer herunterladen. Sie finden diese Option in der ‘Spiele’-Sektion Ihres Battle.net-Accounts, nachdem Sie Ihre E-Mail-Adresse bestätigt haben. <br><br> Sollten Sie Fragen zu Ihrem Battle.net-Account haben, kontaktieren Sie bitte unseren <a href="http://eu.blizzard.com/support/article.xml?articleId=28570">Rechnungssupport</a>. <br><br> Mit freundlichen Grüßen<br> Das Battle.net-Account-Team<br><br> <a href="http://eu.blizzard.com/de-de/company/about/privacy.html">Datenschutzrichtlinien</a> </div>
I already tried this:
driver.FindElementByCssSelector("#mailcontainer > li > a > div.from.ng-binding").Click();
and
driver.FindElement(By.CssSelector("a[href*='confirm.xml?']")).Click();
Both did not work.
Thanks.
> ... "#mailcontainer > li > a > div.from.ng-binding" ...
here I can't see why you are trying to click on a div within the <a> element ... I can't see that there are any <div>'s below the <a>.
> ... a[href*='confirm.xml?']
Assuming the "*" and "?" act as standard wildcard operators, shouldn't the "*" immediately prefix the "confirm.xml"?
And if the "?" represents a match on any single character it will not match the full long string in your href.
Personally I would use the XPath expression "//a[1]" to find the first link, but I guess you could use css of:
#mailcontainer >> a >
When that site provides API s why are you trying to read mails via UI ?
http://mailinator.com/apidocs.jsp
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-user...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/c1e4ef00-47a2-4a59-818b-9e7f28a4ff11%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CANikZL%3DH5f_FbJSG1hjcSYhfXDHMFzuE9Fd7WrUOL-n77m8CqQ%40mail.gmail.com.
Hijust use the below line of code,driver.FindElement(By.XPath("//ul[@id='mailcontainer']/li[1]/a/div[2]")).Click();it will open the first mail of you inbox.
On Mon, Oct 20, 2014 at 11:35 PM, Krishnan Mahadevan <krishnan.m...@gmail.com> wrote:
When that site provides API s why are you trying to read mails via UI ?
On Oct 20, 2014 11:25 PM, "Etaliken" <etal...@gmail.com> wrote:
http://mailinator.com/inbox.jsp?to=Jimmy_Kirchner47722--
Am Sonntag, 19. Oktober 2014 14:35:56 UTC+2 schrieb Etaliken:Hello,im using C# and want to Click the e-mail on:can anyone help me?Thanks :)
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to seleniu...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/c1e4ef00-47a2-4a59-818b-9e7f28a4ff11%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CANikZL%3DH5f_FbJSG1hjcSYhfXDHMFzuE9Fd7WrUOL-n77m8CqQ%40mail.gmail.com.
Hijust use the below line of code,driver.FindElement(By.XPath("//ul[@id='mailcontainer']/li[1]/a/div[2]")).Click();it will open the first mail of you inbox.
On Mon, Oct 20, 2014 at 11:35 PM, Krishnan Mahadevan <krishnan.m...@gmail.com> wrote:
When that site provides API s why are you trying to read mails via UI ?
On Oct 20, 2014 11:25 PM, "Etaliken" <etal...@gmail.com> wrote:
http://mailinator.com/inbox.jsp?to=Jimmy_Kirchner47722--
Am Sonntag, 19. Oktober 2014 14:35:56 UTC+2 schrieb Etaliken:Hello,im using C# and want to Click the e-mail on:can anyone help me?Thanks :)
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to seleniu...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/c1e4ef00-47a2-4a59-818b-9e7f28a4ff11%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CANikZL%3DH5f_FbJSG1hjcSYhfXDHMFzuE9Fd7WrUOL-n77m8CqQ%40mail.gmail.com.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-user...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/cf6e2273-e125-4396-b8e5-520fefb0c653%40googlegroups.com.
Hi,