-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.java
More file actions
22 lines (21 loc) · 1.58 KB
/
Copy pathConstants.java
File metadata and controls
22 lines (21 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package utilities;
public class Constants {
public final static String NEXT_HEBREW_URL="https://www.next.co.il/he";
public final static String LOGIN_PAGE_EN_URL ="https://account.next.co.il/en/Login";
public final static String LOGIN_PAGE_HE_URL ="https://account.next.co.il/he/Login";
public final static String LOGIN_PAGE_CHECKOUT_URL ="https://account.next.co.il/he/login/Checkout";
public final static String HOME_PAGE_URL="https://www.next.co.il/en/homeware";
public final static String LIVINGROOM_PAGE_URL="https://www.next.co.il/en/shop/department-homeware-productaffiliation-livingroom-0";
public final static String GARDEN_PAGE_URL="https://www.next.co.il/en/shop/department-homeware-productaffiliation-gardenandoutdoors-0";
public final static String SHOES_PAGE_URL="https://www.next.co.il/en/shop/productaffiliation-footwear";
public final static String PRODUCT_TO_SEARCH="ווי תליה מעילים של Malvern";
public final static String COLOR_OF_PRODUCT="בצבע לבן-גיר";
public final static String SIZE_OF_PRODUCT="L - 159 ₪";
public final static String QUANTITY_OF_PRODUCT="2";
public final static String SELECTED_PRODUCT_PAGE_URL = "https://www.next.co.il/he/style/st653951/m29788#m29788";
public final static String CREDIT_CARD_NUMBER = "1234567891234567";
public final static String EXPIRY_MONTH = "02";
public final static String EXPIRY_YEAR = "2028";
public final static String SECURITY_CODE = "152";
public final static String CARD_NUMBER_ERROR_HINT = "Enter a valid card number";
}