-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlk_test_cashin_cryptonator.py
58 lines (43 loc) · 2.63 KB
/
lk_test_cashin_cryptonator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import lk_conf
from lk_class_cashin_login_yield import LkCashInLoginRundom
class TestCashInCryptonator(LkCashInLoginRundom):
def test_cashin_cryptonator(self):
if self.check_of_ps(lk_conf.ps_cryptonator_id, lk_conf.tab_aggregators) == True:
self.checkout_cripto()
self.assertIn(lk_conf.site_cryptonator, self.driver.current_url)
def test_cashin_cryptonator_bitcoin(self):
if self.check_of_ps(lk_conf.ps_cryptonator_bitcoin_id, lk_conf.tab_cryptonator) == True:
self.checkout_cripto()
self.assertIn(lk_conf.site_cryptonator, self.driver.current_url)
def test_cashin_cryptonator_bitcoincash(self):
if self.check_of_ps(lk_conf.ps_cryptonator_bitcoincash_id, lk_conf.tab_cryptonator) == True:
self.checkout_cripto()
self.assertIn(lk_conf.site_cryptonator, self.driver.current_url)
def test_cashin_cryptonator_dash(self):
if self.check_of_ps(lk_conf.ps_cryptonator_dash_id, lk_conf.tab_cryptonator) == True:
self.checkout_cripto()
self.assertIn(lk_conf.site_cryptonator, self.driver.current_url)
def test_cashin_cryptonator_dogecoin(self):
if self.check_of_ps(lk_conf.ps_cryptonator_dogecoin_id, lk_conf.tab_cryptonator) == True:
self.checkout_cripto()
self.assertIn(lk_conf.site_cryptonator, self.driver.current_url)
def test_cashin_cryptonator_etheteum(self):
if self.check_of_ps(lk_conf.ps_cryptonator_ethereum_id, lk_conf.tab_cryptonator) == True:
self.checkout_cripto()
self.assertIn(lk_conf.site_cryptonator, self.driver.current_url)
def test_cashin_cryptonator_litecoin(self):
if self.check_of_ps(lk_conf.ps_cryptonator_litecoin_crypto_id, lk_conf.tab_cryptonator) == True:
self.checkout_cripto()
self.assertIn(lk_conf.site_cryptonator, self.driver.current_url)
def test_cashin_cryptonator_monero(self):
if self.check_of_ps(lk_conf.ps_cryptonator_monero_id, lk_conf.tab_cryptonator) == True:
self.checkout_cripto()
self.assertIn(lk_conf.site_cryptonator, self.driver.current_url)
def test_cashin_cryptonator_ripple(self):
if self.check_of_ps(lk_conf.ps_cryptonator_ripple_id, lk_conf.tab_cryptonator) == True:
self.checkout_cripto()
self.assertIn(lk_conf.site_cryptonator, self.driver.current_url)
def test_cashin_cryptonator_zcash(self):
if self.check_of_ps(lk_conf.ps_cryptonator_zcash_id, lk_conf.tab_cryptonator) == True:
self.checkout_cripto()
self.assertIn(lk_conf.site_cryptonator, self.driver.current_url)