Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
kanuri
Posts : 6
Join date : 2012-09-28
Age : 35
Location : Hyderabad

Unable to execute Logout class file Empty Unable to execute Logout class file

Wed Oct 03, 2012 11:20 am
Hi friends,

I am developing Data driven frame work for login and logout of an application..
Here my problem is i wrote code login and logut by using junit framework. Login class file is gets executed and logout class file is not executed. Here i am not getting any error..

Please tell me any one why my logout file is not executed..

here i included my code..

Code:

TestSuiteRunner.class
package Tests;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;

@RunWith(Suite.class)
@SuiteClasses({LogIn.class,LogOut.class})

public class TestSuiteRunner
{
    public static void main(String[] args)
    {
        // TODO Auto-generated method stub
    }

}

Login.class

package Tests;

import java.io.IOException;
import org.junit.Before;
import org.junit.Test;
//import org.openqa.selenium.By;

import Util.TestUtil;

public class LogIn extends TestBase
{
    @Before
    public void beforetest() throws IOException
    {
        Init();   
    }
    @Test
    public void loginTest() throws IOException
    {
        String URL=CONFIG.getProperty("testSuiteName");
        System.out.println(URL);
        driver.get(URL);
        driver.manage().window().maximize();
        TestUtil.LoginSalesForce();
       
    }
}

Logout.class
package Tests;

import java.io.IOException;

import org.junit.Before;
import org.junit.Test;
//import org.openqa.selenium.By;

import Util.TestUtil;

public class LogOut extends TestBase
{
    @Before
    public void beforetest() throws IOException
    {
        System.out.println("IO Exception");
       
            initialize();
    }
   

   
    @Test
    public void logout()
    {
        System.out.println("IO Exception1");
        TestUtil.logout();
        System.out.println("Page is not unable to logged out.");
    }

}


I wrote the code for login and logut in a seperate class file .. i was accessing login and logout functions from that class file..

Any one please tell me why my logout class file is not exected..
Back to top
Permissions in this forum:
You cannot reply to topics in this forum