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

          瀋陽號驅逐艦 目录 接收與服役 配置反潛直升機 武進三型性能升級 歷史 除役 參考資料 外部連結 导航菜单Taiwan Air Power海疆老兵-陽字號驅逐艦沿革World Navies Today: Taiwan (Republic of China)DD-839 USS POWER

          波兰旗帜列表 目录 国旗 军旗 其他制服部门旗帜 特别国家机构船只 参考文献 外部链接 导航菜单Polskie flagi, chorągwie, bandery... [波兰旗帜、条幅、船旗等]原始内容Ustawa z dnia 31 stycznia 1980 r. o godle, barwach i hymnie Rzeczypospolitej Polskiej oraz o pieczęciach państwowychZarządzenie Ministra Obrony Narodowej z dnia 14 grudnia 2005 r. zmieniające zarządzenie w sprawie szczegółowych zasad używania znaków Sił Zbrojnych Rzeczypospolitej Polskiej oraz ustalenia innych znaków używanych w Siłach Zbrojnych Rzeczypospolitej PolskiejZarządzenie Ministra Obrony Narodowej z dnia 29 stycznia 1996 r. w sprawie szczegółowych zasad używania znaków Sił Zbrojnych Rzeczypospolitej Polskiej oraz ustalenia innych znaków używanych w Siłach Zbrojnych Rzeczypospolitej PolskiejUstawa z dnia 19 lutego 1993 r. o znakach Sił Zbrojnych Rzeczypospolitej PolskiejHistoria Marynarki Wojennej RP [波兰海军史]Rozporządzenie Ministra Spraw Wewnętrznych i Administracji z dnia 12 kwietnia 2002 r. w sprawie wzoru flagi oraz oznakowania jednostek pływających i statków powietrznych Straży GranicznejRozporządzenie Ministra Spraw Wewnętrznych i Administracji z dnia 18 kwietnia 2005 r. w sprawie wzoru flagi oraz oznakowania jednostek pływających i statków powietrznych PolicjiRozporządzenie Ministra Infrastruktury z dnia 21 października 2005 r. w sprawie wzorów flag dla statków morskich na oznaczenie pełnionej specjalnej służby państwowej oraz okoliczności i warunków ich podnoszenia波兰旗帜波兰

          Indenting and Dedenting ASP code with Python