{"id":923160,"date":"2024-06-01T10:11:49","date_gmt":"2024-06-01T10:11:49","guid":{"rendered":"https:\/\/proxyelite.info\/?p=923160"},"modified":"2024-05-30T10:21:53","modified_gmt":"2024-05-30T10:21:53","slug":"automating-gmail-account-registration-with-python-and-proxy-support","status":"publish","type":"post","link":"https:\/\/proxyelite.info\/cn\/automating-gmail-account-registration-with-python-and-proxy-support\/","title":{"rendered":"\u4f7f\u7528 Python \u548c\u4ee3\u7406\u652f\u6301\u81ea\u52a8\u6ce8\u518c Gmail \u8d26\u6237"},"content":{"rendered":"<p class=\"wp-block-paragraph\">\u624b\u52a8\u521b\u5efa Gmail \u5e10\u6237\u53ef\u80fd\u5f88\u7e41\u7410\uff0c\u5c24\u5176\u662f\u5f53\u60a8\u9700\u8981\u591a\u4e2a\u5e10\u6237\u7528\u4e8e\u6d4b\u8bd5\u6216\u5176\u4ed6\u76ee\u7684\u65f6\u3002\u5728\u672c\u6559\u7a0b\u4e2d\uff0c\u60a8\u5c06\u5b66\u4e60\u5982\u4f55\u4f7f\u7528 Python \u548c Selenium \u81ea\u52a8\u5316 Gmail \u5e10\u6237\u6ce8\u518c\u8fc7\u7a0b\u3002\u6b64\u5916\uff0c\u6211\u4eec\u5c06\u4f7f\u7528 <code data-no-translation=\"\">faker<\/code> \u751f\u6210\u968f\u673a\u7528\u6237\u6570\u636e\u7684\u5e93\uff0c <code data-no-translation=\"\">random<\/code> \u7528\u4e8e\u5bc6\u7801\u751f\u6210\uff0c\u4ee5\u53ca <code data-no-translation=\"\">webdriver-manager<\/code> \u548c <code data-no-translation=\"\">PySocks<\/code> \u5904\u7406\u4ee3\u7406\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u5148\u51b3\u6761\u4ef6<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u5728\u5f00\u59cb\u4e4b\u524d\uff0c\u8bf7\u786e\u4fdd\u60a8\u5df2\u5b89\u88c5\u4ee5\u4e0b\u8f6f\u4ef6\uff1a<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Python 3.x<\/li>\n\n\n\n<li>\u7852<\/li>\n\n\n\n<li>Chrome WebDriver<\/li>\n\n\n\n<li>\u9a97\u5b50<\/li>\n\n\n\n<li>PySocks<\/li>\n\n\n\n<li>Selenium \u7684 WebDriver \u7ba1\u7406\u5668<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">\u60a8\u53ef\u4ee5\u4f7f\u7528 pip \u5b89\u88c5 Selenium\u3001Faker\u3001PySocks \u548c WebDriver Manager\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">pip install selenium faker pysocks webdriver-manager<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u4ece\u4ee5\u4e0b\u4f4d\u7f6e\u4e0b\u8f7d Chrome WebDriver <a>\u8fd9\u91cc<\/a> \u5e76\u786e\u4fdd\u5b83\u5728\u4f60\u7684PATH\u4e2d\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u811a\u672c\u6982\u8ff0<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u8be5\u811a\u672c\u5c06\uff1a<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>\u751f\u6210\u968f\u673a\u7684\u540d\u5b57\u3001\u59d3\u6c0f\u3001\u7528\u6237\u540d\u548c\u5bc6\u7801\u3002<\/li>\n\n\n\n<li>\u4f7f\u7528 Selenium \u6253\u5f00 Gmail \u6ce8\u518c\u9875\u9762\u3002<\/li>\n\n\n\n<li>\u4f7f\u7528\u751f\u6210\u7684\u6570\u636e\u586b\u5199\u6ce8\u518c\u8868\u3002<\/li>\n\n\n\n<li>\u63d0\u4ea4\u8868\u683c\u3002<\/li>\n\n\n\n<li>\u4f7f\u7528 SOCKS5 \u4ee3\u7406\u8fdb\u884c\u6ce8\u518c\u8fc7\u7a0b\u3002<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">\u6b65\u9aa4 1\uff1a\u5bfc\u5165\u5e93\u5e76\u521d\u59cb\u5316 Faker<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">\u9996\u5148\uff0c\u6211\u4eec\u5c06\u5bfc\u5165\u5fc5\u8981\u7684\u5e93\u5e76\u521d\u59cb\u5316 <code data-no-translation=\"\">Faker<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">from selenium import webdriver\nfrom selenium.webdriver.common.by import By\nfrom selenium.webdriver.support.ui import WebDriverWait\nfrom selenium.webdriver.support import expected_conditions as EC\nfrom faker import Faker\nimport random\nimport string\nimport time\nfrom webdriver_manager.chrome import ChromeDriverManager\nfrom selenium.webdriver.chrome.service import Service\nfrom selenium.webdriver.chrome.options import Options\n\n# Initialize Faker\nfake = Faker()<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\u7b2c 2 \u6b65\uff1a\u751f\u6210\u968f\u673a\u6570\u636e<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">\u63a5\u4e0b\u6765\uff0c\u6211\u4eec\u5c06\u521b\u5efa\u4e00\u4e2a\u51fd\u6570\u6765\u751f\u6210\u968f\u673a\u5bc6\u7801\u5e76\u751f\u6210\u968f\u673a\u7528\u6237\u6570\u636e\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\"># Function to generate a random password\ndef generate_password(length=12):\n    characters = string.ascii_letters + string.digits + string.punctuation\n    password = ''.join(random.choice(characters) for i in range(length))\n    return password\n\n# Generate random user data\nfirst_name = fake.first_name()\nlast_name = fake.last_name()\nusername = first_name.lower() + last_name.lower() + str(random.randint(1000, 9999))\npassword = generate_password()<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\u6b65\u9aa4 3\uff1a\u4f7f\u7528\u4ee3\u7406\u521d\u59cb\u5316 Selenium WebDriver<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">\u521d\u59cb\u5316 Chrome WebDriver \u5e76\u5bfc\u822a\u5230 Gmail \u6ce8\u518c\u9875\u9762\uff0c\u4f7f\u7528 SOCKS5 \u4ee3\u7406\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\"># Proxy settings (replace with your proxy details)\nproxy = \"your_proxy_address:your_proxy_port\"\n\n# Initialize Chrome WebDriver with proxy settings\nchrome_options = Options()\nchrome_options.add_argument(\"--proxy-server=socks5:\/\/\" + proxy)\n\n# Initialize the WebDriver\nservice = Service(ChromeDriverManager().install())\ndriver = webdriver.Chrome(service=service, options=chrome_options)\n\n# Open Gmail signup page\ndriver.get(\"https:\/\/accounts.google.com\/signup\")<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\u6b65\u9aa4 4\uff1a\u586b\u5199\u6ce8\u518c\u8868<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">\u7b49\u5f85\u9875\u9762\u52a0\u8f7d\uff0c\u627e\u5230\u8868\u5355\u5b57\u6bb5\uff0c\u5e76\u4f7f\u7528\u751f\u6210\u7684\u6570\u636e\u586b\u5145\u5b83\u4eec\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\"># Wait for the page to load and locate the form fields\nwait = WebDriverWait(driver, 10)\nfirst_name_field = wait.until(EC.presence_of_element_located((By.ID, \"firstName\")))\nlast_name_field = driver.find_element(By.ID, \"lastName\")\nusername_field = driver.find_element(By.ID, \"username\")\npassword_field = driver.find_element(By.NAME, \"Passwd\")\nconfirm_password_field = driver.find_element(By.NAME, \"ConfirmPasswd\")\n\n# Fill out the form fields\nfirst_name_field.send_keys(first_name)\nlast_name_field.send_keys(last_name)\nusername_field.send_keys(username)\npassword_field.send_keys(password)\nconfirm_password_field.send_keys(password)<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\u7b2c 5 \u6b65\uff1a\u63d0\u4ea4\u8868\u683c<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">\u63d0\u4ea4\u8868\u5355\u5e76\u6dfb\u52a0\u5ef6\u8fdf\u4ee5\u5141\u8bb8\u4e0b\u4e00\u9875\u52a0\u8f7d\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\"># Submit the form\nnext_button = driver.find_element(By.XPATH, '\/\/*&#91;@id=\"accountDetailsNext\"]\/div\/button')\nnext_button.click()\n\n# Add a delay to allow the next page to load (you may need to adjust the sleep time)\ntime.sleep(5)<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\u6b65\u9aa4 6\uff1a\u5904\u7406\u5176\u4ed6\u6b65\u9aa4<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">\u6839\u636e Google \u7684\u6ce8\u518c\u6d41\u7a0b\uff0c\u60a8\u53ef\u80fd\u9700\u8981\u5904\u7406\u5176\u4ed6\u6b65\u9aa4\uff0c\u4f8b\u5982\u7535\u8bdd\u9a8c\u8bc1\u3001\u6062\u590d\u7535\u5b50\u90ae\u4ef6\u6216 CAPTCHA\u3002\u6b64\u90e8\u5206\u4f1a\u6709\u6240\u4e0d\u540c\uff0c\u53ef\u80fd\u9700\u8981\u66f4\u9ad8\u7ea7\u7684\u5904\u7406\u3002<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u6b65\u9aa4 7\uff1a\u5173\u95ed\u6d4f\u89c8\u5668<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">\u8be5\u8fc7\u7a0b\u5b8c\u6210\u540e\u5173\u95ed\u6d4f\u89c8\u5668\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\"># Close the browser after the process is complete\ndriver.quit()\n\n# Output the generated data\nprint(f\"First Name: {first_name}\")\nprint(f\"Last Name: {last_name}\")\nprint(f\"Username: {username}\")\nprint(f\"Password: {password}\")<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\u5b8c\u6574\u811a\u672c<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u4ee5\u4e0b\u662f\u5305\u542b\u6240\u6709\u6b65\u9aa4\u7684\u5b8c\u6574\u811a\u672c\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">from selenium import webdriver\nfrom selenium.webdriver.common.by import By\nfrom selenium.webdriver.support.ui import WebDriverWait\nfrom selenium.webdriver.support import expected_conditions as EC\nfrom faker import Faker\nimport random\nimport string\nimport time\nfrom webdriver_manager.chrome import ChromeDriverManager\nfrom selenium.webdriver.chrome.service import Service\nfrom selenium.webdriver.chrome.options import Options\n\n# Initialize Faker\nfake = Faker()\n\n# Function to generate a random password\ndef generate_password(length=12):\n    characters = string.ascii_letters + string.digits + string.punctuation\n    password = ''.join(random.choice(characters) for i in range(length))\n    return password\n\n# Generate random user data\nfirst_name = fake.first_name()\nlast_name = fake.last_name()\nusername = first_name.lower() + last_name.lower() + str(random.randint(1000, 9999))\npassword = generate_password()\n\n# Proxy settings (replace with your proxy details)\nproxy = \"your_proxy_address:your_proxy_port\"\n\n# Initialize Chrome WebDriver with proxy settings\nchrome_options = Options()\nchrome_options.add_argument(\"--proxy-server=socks5:\/\/\" + proxy)\n\n# Initialize the WebDriver\nservice = Service(ChromeDriverManager().install())\ndriver = webdriver.Chrome(service=service, options=chrome_options)\n\n# Open Gmail signup page\ndriver.get(\"https:\/\/accounts.google.com\/signup\")\n\n# Wait for the page to load and locate the form fields\nwait = WebDriverWait(driver, 10)\nfirst_name_field = wait.until(EC.presence_of_element_located((By.ID, \"firstName\")))\nlast_name_field = driver.find_element(By.ID, \"lastName\")\nusername_field = driver.find_element(By.ID, \"username\")\npassword_field = driver.find_element(By.NAME, \"Passwd\")\nconfirm_password_field = driver.find_element(By.NAME, \"ConfirmPasswd\")\n\n# Fill out the form fields\nfirst_name_field.send_keys(first_name)\nlast_name_field.send_keys(last_name)\nusername_field.send_keys(username)\npassword_field.send_keys(password)\nconfirm_password_field.send_keys(password)\n\n# Submit the form\nnext_button = driver.find_element(By.XPATH, '\/\/*&#91;@id=\"accountDetailsNext\"]\/div\/button')\nnext_button.click()\n\n# Add a delay to allow the next page to load (you may need to adjust the sleep time)\ntime.sleep(5)\n\n# Close the browser after the process is complete\ndriver.quit()\n\n# Output the generated data\nprint(f\"First Name: {first_name}\")\nprint(f\"Last Name: {last_name}\")\nprint(f\"Username: {username}\")\nprint(f\"Password: {password}\")<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\u7ed3\u8bba<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u60a8\u5df2\u6210\u529f\u4f7f\u7528 Python \u548c Selenium \u81ea\u52a8\u5316 Gmail \u5e10\u6237\u6ce8\u518c\u6d41\u7a0b\uff0c\u5e76\u6dfb\u52a0\u4e86 SOCKS5 \u4ee3\u7406\u652f\u6301\u3002\u6b64\u811a\u672c\u4f1a\u751f\u6210\u968f\u673a\u7528\u6237\u6570\u636e\u3001\u586b\u5199\u6ce8\u518c\u8868\u5355\u5e76\u901a\u8fc7\u6307\u5b9a\u4ee3\u7406\u8def\u7531\u6d41\u91cf\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u8bb0\u5f97\u66f4\u6362 <code data-no-translation=\"\">your_proxy_address:your_proxy_port<\/code> \u4f7f\u7528\u60a8\u7684\u5b9e\u9645\u4ee3\u7406\u8be6\u7ec6\u4fe1\u606f\u5e76\u8d1f\u8d23\u4efb\u5730\u4f7f\u7528\u6b64\u811a\u672c\uff0c\u7262\u8bb0\u81ea\u52a8\u521b\u5efa\u5e10\u6237\u7684\u6cd5\u5f8b\u548c\u9053\u5fb7\u5f71\u54cd\u3002<\/p>","protected":false},"excerpt":{"rendered":"<p>Creating Gmail accounts manually can be tedious, especially if you need multiple accounts for testing or other purposes. In this tutorial, you&#8217;ll learn how to automate the Gmail account registration process using Python and Selenium. Additionally, we&#8217;ll use the faker library to generate random user data, random for password generation, and webdriver-manager and PySocks to [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":923161,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-923160","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-articles"],"acf":[],"_links":{"self":[{"href":"https:\/\/proxyelite.info\/cn\/wp-json\/wp\/v2\/posts\/923160","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/proxyelite.info\/cn\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/proxyelite.info\/cn\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/proxyelite.info\/cn\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/proxyelite.info\/cn\/wp-json\/wp\/v2\/comments?post=923160"}],"version-history":[{"count":0,"href":"https:\/\/proxyelite.info\/cn\/wp-json\/wp\/v2\/posts\/923160\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/proxyelite.info\/cn\/wp-json\/wp\/v2\/media\/923161"}],"wp:attachment":[{"href":"https:\/\/proxyelite.info\/cn\/wp-json\/wp\/v2\/media?parent=923160"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/proxyelite.info\/cn\/wp-json\/wp\/v2\/categories?post=923160"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/proxyelite.info\/cn\/wp-json\/wp\/v2\/tags?post=923160"}],"curies":[{"name":"\u53ef\u6e7f\u6027\u7c89\u5242","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}