Skip to content

Commit 9adc1ae

Browse files
committed
Updated
1 parent 1642514 commit 9adc1ae

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

Diff for: AutomationScripts/Autofill Google Forms/Images/1.png

140 KB
Loading

Diff for: AutomationScripts/Autofill Google Forms/Images/2.png

126 KB
Loading

Diff for: AutomationScripts/Autofill Google Forms/Images/3.png

132 KB
Loading

Diff for: AutomationScripts/Autofill Google Forms/README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ✔ AUTOFILL GOOGLE FORM
2-
- ### We will look at Web Automation using Python in detail. We will be using the Webdriver and Selenium Libraries to do our coding, and we will be filling out an attendance form,
2+
- ### We will look at Web Automation using Python in detail. We will be using the Webdriver and Selenium Libraries to do our coding, and we will be filling out an attendance form
33

44
****
55

@@ -9,6 +9,15 @@
99
- ### Webdriver
1010

1111
****
12+
# SCREENSHOTS :
13+
****
14+
15+
<p align="center">
16+
<img width = 1000 src="Images/1.png" /><br>
17+
<img width = 1000 src="Images/2.png" /><br>
18+
<img width = 1000 src="Images/3.png" /><br>
19+
20+
</p>
1221

1322
# Purpose :
1423
- ### This scripts helps user to easily to fill Form automatically.

Diff for: AutomationScripts/Autofill Google Forms/autofill_google_form.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
time.sleep(3)
88

9-
LastName = "YOUR LAST NAME"
9+
LastName = "Aditya"
1010
last = web.find_element_by_xpath('//*[@id="mG61Hd"]/div[2]/div/div[2]/div[1]/div/div/div[2]/div/div[1]/div/div[1]/input')
1111
last.send_keys(LastName)
1212

13-
FirstName = "YOUR FIRST NAME"
13+
FirstName = "Gupta"
1414
first = web.find_element_by_xpath('//*[@id="mG61Hd"]/div[2]/div/div[2]/div[2]/div/div/div[2]/div/div[1]/div/div[1]/input')
1515
first.send_keys(FirstName)
1616

@@ -25,4 +25,4 @@
2525
if ((get_confirmation_div_text.text) == "Thank you for attending"):
2626
print ("Test Was Successful")
2727
else:
28-
print("Test Was Not Successful")
28+
print("Test Was Not Successful")

0 commit comments

Comments
 (0)