source: devel/testlink/automation/src/test/java/br/gov/serpro/cte/connection/LoginExpresso.java @ 3521

Revision 3521, 524 bytes checked in by luiz-fernando, 13 years ago (diff)

Ticket #1402 - Automacao dos casos de teste do Expresso documentados no Testlink

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(""),
19       
20        /**
21         *      Senha
22         */
23        PASSWORD_EXPRESSO(""),
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.