File tree 1 file changed +9
-8
lines changed
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 5
5
from time import sleep
6
6
import undetected_chromedriver as uc
7
7
from os import system
8
- #option = webdriver.ChromeOptions()
9
8
option = uc .ChromeOptions ()
10
- PROXY = "154.83.29.201:999"
9
+ #PROXY = "154.83.29.201:999" #delete the # to enable proxies u also need to put a http proxie inside
10
+ #option.add_argument('--proxy-server=%s' % PROXY) #delete the # to enable proxies
11
11
def cls ():
12
12
system ("cls" )
13
- #option.add_argument('--proxy-server=%s' % PROXY)
13
+
14
14
option .add_argument ('--disable-notifications' )
15
15
option .add_extension ("Noptcha--ReCAPTCHA---hCAPTCHA-Solver.crx" )
16
16
option .add_extension ("I-don-t-care-about-cookies.crx" )
@@ -44,10 +44,11 @@ def main():
44
44
elem = driver .find_element_by_xpath ("//*" )
45
45
source_code = elem .get_attribute ("outerHTML" )
46
46
if not "CAPTCHA" in source_code :
47
- print ("captcha not found" )
48
- system ("start IPChanger.vbs" )
49
- sleep (10 )
50
- main ()
47
+ cls ()
48
+ print ("captcha not found please complete verification" )
49
+ input ("press enter when done" )
50
+
51
+
51
52
print ("Waiting 20 seconds please be paitent" )
52
53
sleep (20 )
53
54
driver .find_element (By .XPATH , value = '/html/body/div[1]/div[3]/div/div/main/div[2]/form/button' ).click ()
@@ -64,4 +65,4 @@ def main():
64
65
print (
f"Account \n email: { name } [email protected] generated" )
65
66
main ()
66
67
67
- main ()
68
+ main ()
You can’t perform that action at this time.
0 commit comments