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
How do I find out the mythology and history of my Fortress?
Is multiple magic items in one inherently imbalanced?
How do living politicians protect their readily obtainable signatures from misuse?
Maximum summed subsequences with non-adjacent items
Tannaka duality for semisimple groups
What is the difference between a "ranged attack" and a "ranged weapon attack"?
Did Mueller's report provide an evidentiary basis for the claim of Russian govt election interference via social media?
Dynamic filling of a region of a polar plot
How many morphisms from 1 to 1+1 can there be?
Random body shuffle every night—can we still function?
Is there hard evidence that the grant peer review system performs significantly better than random?
How did Fremen produce and carry enough thumpers to use Sandworms as de facto Ubers?
Would it be easier to apply for a UK visa if there is a host family to sponsor for you in going there?
Karn the great creator - 'card from outside the game' in sealed
How can I prevent/balance waiting and turtling as a response to cooldown mechanics
How would a mousetrap for use in space work?
The Nth Gryphon Number
How does Belgium enforce obligatory attendance in elections?
A term for a woman complaining about things/begging in a cute/childish way
What makes a man succeed?
Why do early math courses focus on the cross sections of a cone and not on other 3D objects?
Misunderstanding of Sylow theory
Is there public access to the Meteor Crater in Arizona?
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 34 secs ago
200_success
131k17157422
131k17157422
asked 4 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