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;








2












$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 use random.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 know random.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)









share|improve this question











$endgroup$


















    2












    $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 use random.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 know random.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)









    share|improve this question











    $endgroup$














      2












      2








      2





      $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 use random.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 know random.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)









      share|improve this question











      $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 use random.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 know random.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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 9 mins ago









      200_success

      131k17157422




      131k17157422










      asked 13 mins ago









      David WhiteDavid White

      414516




      414516




















          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
          );



          );













          draft saved

          draft discarded


















          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















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          名間水力發電廠 目录 沿革 設施 鄰近設施 註釋 外部連結 导航菜单23°50′10″N 120°42′41″E / 23.83611°N 120.71139°E / 23.83611; 120.7113923°50′10″N 120°42′41″E / 23.83611°N 120.71139°E / 23.83611; 120.71139計畫概要原始内容臺灣第一座BOT 模式開發的水力發電廠-名間水力電廠名間水力發電廠 水利署首件BOT案原始内容《小檔案》名間電廠 首座BOT水力發電廠原始内容名間電廠BOT - 經濟部水利署中區水資源局

          Prove that NP is closed under karp reduction?Space(n) not closed under Karp reductions - what about NTime(n)?Class P is closed under rotation?Prove or disprove that $NL$ is closed under polynomial many-one reductions$mathbfNC_2$ is closed under log-space reductionOn Karp reductionwhen can I know if a class (complexity) is closed under reduction (cook/karp)Check if class $PSPACE$ is closed under polyonomially space reductionIs NPSPACE also closed under polynomial-time reduction and under log-space reduction?Prove PSPACE is closed under complement?Prove PSPACE is closed under union?

          Is my guitar’s action too high? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Strings too stiff on a recently purchased acoustic guitar | Cort AD880CEIs the action of my guitar really high?Μy little finger is too weak to play guitarWith guitar, how long should I give my fingers to strengthen / callous?When playing a fret the guitar sounds mutedPlaying (Barre) chords up the guitar neckI think my guitar strings are wound too tight and I can't play barre chordsF barre chord on an SG guitarHow to find to the right strings of a barre chord by feel?High action on higher fret on my steel acoustic guitar