Skip to content

Commit 8706fbb

Browse files
authored
Update main.py
1 parent ef95339 commit 8706fbb

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

main.py

+9-8
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
from time import sleep
66
import undetected_chromedriver as uc
77
from os import system
8-
#option = webdriver.ChromeOptions()
98
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
1111
def cls():
1212
system("cls")
13-
#option.add_argument('--proxy-server=%s' % PROXY)
13+
1414
option.add_argument('--disable-notifications')
1515
option.add_extension("Noptcha--ReCAPTCHA---hCAPTCHA-Solver.crx")
1616
option.add_extension("I-don-t-care-about-cookies.crx")
@@ -44,10 +44,11 @@ def main():
4444
elem = driver.find_element_by_xpath("//*")
4545
source_code = elem.get_attribute("outerHTML")
4646
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+
5152
print("Waiting 20 seconds please be paitent")
5253
sleep(20)
5354
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():
6465
print(f"Account \nemail: {name}[email protected] generated")
6566
main()
6667

67-
main()
68+
main()

0 commit comments

Comments
 (0)