source: devel/testlink/calendar/FUN03.2/src/test/java/br/gov/serpro/cte/connection/LoginExpresso.java @ 3431

Revision 3431, 549 bytes checked in by alexandrecorreia, 14 years ago (diff)

Ticket #1394 - Caso de Teste EL-938 - Adicionar compromisso

Line 
1/**
2 * Author               : Alexandre Correia
3 * ClasseName   : LoginExpresso
4 * Date                 : 28/10/2010
5 *
6 * Retorna o nome do usuario e senha
7 *
8 */
9
10package br.gov.serpro.cte.connection;
11
12
13public enum LoginExpresso
14{
15        /**
16         *      Usuario
17         */
18        USER_EXPRESSO("alexandrecorreia"),
19       
20        /**
21         *      Senha
22         */
23        PASSWORD_EXPRESSO("senha4321"),
24       
25       
26        /**
27         * Button click
28         */
29        BUTTON_CLICK("submitit");
30       
31       
32        private String value;
33 
34    private LoginExpresso(String value)
35    {
36        this.value = value;
37    }
38
39    public String getValue()
40    {
41        return value;
42    }
43}
Note: See TracBrowser for help on using the repository browser.