ارسال خودکار فرم ثبت نام
برنامه ای بنویسید که فرم زیر را با اطلاعات رندوم بصورت خودکار پر کرده و ارسال کند
راهنما: میتوانید از Selenium استفاده کنید
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="UTF-8">
<title>فرم ثبتنام</title>
</head>
<body>
<h2>فرم ثبتنام</h2>
<form id="signup-form" action="submit.html" method="post">
<label for="name">نام:</label>
<input type="text" id="name" name="name" required><br><br>
<label for="email">ایمیل:</label>
<input type="email" id="email" name="email" required><br><br>
<label for="password">رمز عبور:</label>
<input type="password" id="password" name="password" required><br><br>
<label for="confirm-password">تکرار رمز عبور:</label>
<input type="password" id="confirm-password" name="confirm-password" required><br><br>
<button type="submit">ثبتنام</button>
</form>
</body>
</html>