- dkpune
- Posts : 6
Join date : 2012-03-14
Send email automatically
Sat Mar 24, 2012 2:49 am
I want to send an email (from outlook) automatically from script when smoke test is compelted. Please share the java code which can be used in Selenium.
Re: Send email automatically
Tue Apr 10, 2012 3:31 pm
I don't have idea regarding mail functionality by outlook but here is code for Gmail
Just need to add code at the end of your script, n it will send email.
Hope it will work for you..
Just need to add code at the end of your script, n it will send email.
- Code:
public class email extends SeleneseTestCase {
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*chrome", "http://selenium.brodos.net/");
selenium.start();
}
@Test
public void testEmail() throws Exception {
selenium.open("http://www.gmail.com");
selenium.type("id=Email", "test");
selenium.type("id=Passwd", "test");
selenium.click("id=signIn");
selenium.waitForPageToLoad("30000");
selenium.clickAt("//div[@id=':oy']/div/div", "");
selenium.type("name=to", "test@test.com");
selenium.type("name=subject", "testSubject");
selenium.type("css=body[class='editable LW-avf']", "asdasd");
selenium.keyPress("//div/b[text()='Send']", "13");
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}
Hope it will work for you..
Re: Send email automatically
Thu Apr 12, 2012 1:29 pm
A better approach could be to use build tool like ant to send email of test results. I assume that you are not using any CI system else it would have been way easier.
You could find more on ant mail task here - http://ant.apache.org/manual/Tasks/mail.html
You could find more on ant mail task here - http://ant.apache.org/manual/Tasks/mail.html
- How to automated gmail to send email by using Selenium?
- Fail to send the automated email for test results.
- In the IDE i am using typeKeys to enter email into email text box but the dot is being missed out
- Can I have Selenium re-log into a page if I've been automatically logged out?
- Is there a way to automatically open a captured screenshot?
Permissions in this forum:
You cannot reply to topics in this forum