Submit random choices on Google form Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Auto-update serverAuto backup Chrome bookmarksSelect fields from a form by ID or Xpath and fill its valueSelecting currencies on a form using SeleniumHandling missing elements on login form in SeleniumFill out webform with SeleniumBruteforce web formAuto clicker with a simple GUISimple generic auto __repr__Python, Selenium, Pandas project; for populating web form page on loop
Random body shuffle every night—can we still function?
Why are vacuum tubes still used in amateur radios?
Converted a Scalar function to a TVF function for parallel execution-Still running in Serial mode
How can I set the aperture on my DSLR when it's attached to a telescope instead of a lens?
preposition before coffee
Is there public access to the Meteor Crater in Arizona?
Does the Mueller report show a conspiracy between Russia and the Trump Campaign?
Are sorcerers unable to use the Careful Spell metamagic option on themselves?
Putting class ranking in CV, but against dept guidelines
What does Turing mean by this statement?
What's the point of the test set?
Trademark violation for app?
How would a mousetrap for use in space work?
One-one communication
Why weren't discrete x86 CPUs ever used in game hardware?
AppleTVs create a chatty alternate WiFi network
How often does castling occur in grandmaster games?
Why is it faster to reheat something than it is to cook it?
What does it mean that physics no longer uses mechanical models to describe phenomena?
How did Fremen produce and carry enough thumpers to use Sandworms as de facto Ubers?
In musical terms, what properties are varied by the human voice to produce different words / syllables?
Girl Hackers - Logic Puzzle
How to write capital alpha?
How much damage would a cupful of neutron star matter do to the Earth?
Submit random choices on Google form
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Auto-update serverAuto backup Chrome bookmarksSelect fields from a form by ID or Xpath and fill its valueSelecting currencies on a form using SeleniumHandling missing elements on login form in SeleniumFill out webform with SeleniumBruteforce web formAuto clicker with a simple GUISimple generic auto __repr__Python, Selenium, Pandas project; for populating web form page on loop
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
$begingroup$
I've written a Python script that randomly selects radio buttons for each question, and submits the google form. My main questions for improvement are:
Algorithm: I collect all the buttons into a 2D array, then userandom.choice
to select the radio buttons based on each nested array. I'm sure there's a better way to do this, since my algorithm is basically hard coded.
Performance: I knowrandom.choice
takes a lot more time than other methods, but it's the only way I know enough to write with it.
Wait Time: Right now, I wait .75 seconds before entering in another form. I'm wondering if there's a way to wait for the page to load completely, rather than wait and hope that it loads fast enough to not generate a page not found error.
script.py
#run with python3
from selenium import webdriver
import random
import time
#Setup paths and open chrome browser
chrome_path = "desktop/code/python/driver/chrome/chromedriver"
website_path = "https://docs.google.com/forms/d/e/1FAIpQLSdcWrIYQlNbywuLg276z0CbBw-GyQOj_s2ncR9qVA7F7FPARQ/viewform"
driver = webdriver.Chrome(chrome_path)
driver.get(website_path)
#Define options based on each section
#EXCEPT: 9 18 25 28 31 (for text areas)
options = [
[0, 1, 2, 3],
[4, 5, 6],
[7, 8],
[10, 11],
[12, 13, 14, 15],
[16, 17],
[19, 20, 21],
[22, 23, 24],
[26, 27],
[29, 30],
[32, 33]
]
#Main loop
def main(counter):
count = counter + 1
#Collect all buttons on page and submit button
buttons = driver.find_elements_by_xpath("//*[@class='freebirdFormviewerViewItemsRadioOptionContainer']")
submit = driver.find_element_by_xpath("//*[@class='quantumWizButtonPaperbuttonLabel exportLabel']")
"""
Randomly chooses an option from the 2D array based on what i is, and that
number is the index of `buttons`, which the button in that index will be clicked
"""
for i in range(len(options)):
buttons[random.choice(options[i])].click()
#Submit form
submit.click()
#Go to previous page, which will be the form
driver.execute_script("window.history.go(-1)")
#Output how many forms have been submitted thus far
print(f"Form #count has been submitted!")
#Wait for page to load again, then call main to run again
time.sleep(.75)
main(count)
if __name__ == '__main__':
main(0)
python python-3.x form selenium
$endgroup$
add a comment |
$begingroup$
I've written a Python script that randomly selects radio buttons for each question, and submits the google form. My main questions for improvement are:
Algorithm: I collect all the buttons into a 2D array, then userandom.choice
to select the radio buttons based on each nested array. I'm sure there's a better way to do this, since my algorithm is basically hard coded.
Performance: I knowrandom.choice
takes a lot more time than other methods, but it's the only way I know enough to write with it.
Wait Time: Right now, I wait .75 seconds before entering in another form. I'm wondering if there's a way to wait for the page to load completely, rather than wait and hope that it loads fast enough to not generate a page not found error.
script.py
#run with python3
from selenium import webdriver
import random
import time
#Setup paths and open chrome browser
chrome_path = "desktop/code/python/driver/chrome/chromedriver"
website_path = "https://docs.google.com/forms/d/e/1FAIpQLSdcWrIYQlNbywuLg276z0CbBw-GyQOj_s2ncR9qVA7F7FPARQ/viewform"
driver = webdriver.Chrome(chrome_path)
driver.get(website_path)
#Define options based on each section
#EXCEPT: 9 18 25 28 31 (for text areas)
options = [
[0, 1, 2, 3],
[4, 5, 6],
[7, 8],
[10, 11],
[12, 13, 14, 15],
[16, 17],
[19, 20, 21],
[22, 23, 24],
[26, 27],
[29, 30],
[32, 33]
]
#Main loop
def main(counter):
count = counter + 1
#Collect all buttons on page and submit button
buttons = driver.find_elements_by_xpath("//*[@class='freebirdFormviewerViewItemsRadioOptionContainer']")
submit = driver.find_element_by_xpath("//*[@class='quantumWizButtonPaperbuttonLabel exportLabel']")
"""
Randomly chooses an option from the 2D array based on what i is, and that
number is the index of `buttons`, which the button in that index will be clicked
"""
for i in range(len(options)):
buttons[random.choice(options[i])].click()
#Submit form
submit.click()
#Go to previous page, which will be the form
driver.execute_script("window.history.go(-1)")
#Output how many forms have been submitted thus far
print(f"Form #count has been submitted!")
#Wait for page to load again, then call main to run again
time.sleep(.75)
main(count)
if __name__ == '__main__':
main(0)
python python-3.x form selenium
$endgroup$
add a comment |
$begingroup$
I've written a Python script that randomly selects radio buttons for each question, and submits the google form. My main questions for improvement are:
Algorithm: I collect all the buttons into a 2D array, then userandom.choice
to select the radio buttons based on each nested array. I'm sure there's a better way to do this, since my algorithm is basically hard coded.
Performance: I knowrandom.choice
takes a lot more time than other methods, but it's the only way I know enough to write with it.
Wait Time: Right now, I wait .75 seconds before entering in another form. I'm wondering if there's a way to wait for the page to load completely, rather than wait and hope that it loads fast enough to not generate a page not found error.
script.py
#run with python3
from selenium import webdriver
import random
import time
#Setup paths and open chrome browser
chrome_path = "desktop/code/python/driver/chrome/chromedriver"
website_path = "https://docs.google.com/forms/d/e/1FAIpQLSdcWrIYQlNbywuLg276z0CbBw-GyQOj_s2ncR9qVA7F7FPARQ/viewform"
driver = webdriver.Chrome(chrome_path)
driver.get(website_path)
#Define options based on each section
#EXCEPT: 9 18 25 28 31 (for text areas)
options = [
[0, 1, 2, 3],
[4, 5, 6],
[7, 8],
[10, 11],
[12, 13, 14, 15],
[16, 17],
[19, 20, 21],
[22, 23, 24],
[26, 27],
[29, 30],
[32, 33]
]
#Main loop
def main(counter):
count = counter + 1
#Collect all buttons on page and submit button
buttons = driver.find_elements_by_xpath("//*[@class='freebirdFormviewerViewItemsRadioOptionContainer']")
submit = driver.find_element_by_xpath("//*[@class='quantumWizButtonPaperbuttonLabel exportLabel']")
"""
Randomly chooses an option from the 2D array based on what i is, and that
number is the index of `buttons`, which the button in that index will be clicked
"""
for i in range(len(options)):
buttons[random.choice(options[i])].click()
#Submit form
submit.click()
#Go to previous page, which will be the form
driver.execute_script("window.history.go(-1)")
#Output how many forms have been submitted thus far
print(f"Form #count has been submitted!")
#Wait for page to load again, then call main to run again
time.sleep(.75)
main(count)
if __name__ == '__main__':
main(0)
python python-3.x form selenium
$endgroup$
I've written a Python script that randomly selects radio buttons for each question, and submits the google form. My main questions for improvement are:
Algorithm: I collect all the buttons into a 2D array, then userandom.choice
to select the radio buttons based on each nested array. I'm sure there's a better way to do this, since my algorithm is basically hard coded.
Performance: I knowrandom.choice
takes a lot more time than other methods, but it's the only way I know enough to write with it.
Wait Time: Right now, I wait .75 seconds before entering in another form. I'm wondering if there's a way to wait for the page to load completely, rather than wait and hope that it loads fast enough to not generate a page not found error.
script.py
#run with python3
from selenium import webdriver
import random
import time
#Setup paths and open chrome browser
chrome_path = "desktop/code/python/driver/chrome/chromedriver"
website_path = "https://docs.google.com/forms/d/e/1FAIpQLSdcWrIYQlNbywuLg276z0CbBw-GyQOj_s2ncR9qVA7F7FPARQ/viewform"
driver = webdriver.Chrome(chrome_path)
driver.get(website_path)
#Define options based on each section
#EXCEPT: 9 18 25 28 31 (for text areas)
options = [
[0, 1, 2, 3],
[4, 5, 6],
[7, 8],
[10, 11],
[12, 13, 14, 15],
[16, 17],
[19, 20, 21],
[22, 23, 24],
[26, 27],
[29, 30],
[32, 33]
]
#Main loop
def main(counter):
count = counter + 1
#Collect all buttons on page and submit button
buttons = driver.find_elements_by_xpath("//*[@class='freebirdFormviewerViewItemsRadioOptionContainer']")
submit = driver.find_element_by_xpath("//*[@class='quantumWizButtonPaperbuttonLabel exportLabel']")
"""
Randomly chooses an option from the 2D array based on what i is, and that
number is the index of `buttons`, which the button in that index will be clicked
"""
for i in range(len(options)):
buttons[random.choice(options[i])].click()
#Submit form
submit.click()
#Go to previous page, which will be the form
driver.execute_script("window.history.go(-1)")
#Output how many forms have been submitted thus far
print(f"Form #count has been submitted!")
#Wait for page to load again, then call main to run again
time.sleep(.75)
main(count)
if __name__ == '__main__':
main(0)
python python-3.x form selenium
python python-3.x form selenium
edited 9 mins ago
200_success
131k17157422
131k17157422
asked 13 mins ago
David WhiteDavid White
414516
414516
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "196"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f217765%2fsubmit-random-choices-on-google-form%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Code Review Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f217765%2fsubmit-random-choices-on-google-form%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown