Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. if request.method == "POST":
  2. f = request.form
  3. for key in f.keys():
  4. print("THIS IS THE KEY --",key)
  5. for value in f.getlist(key):
  6. print(key, ":", value)
  7.  
  8. #RESULTS UNDER HERE
  9. THIS IS THE KEY -- select_element_by
  10. select_element_by : id
  11. select_element_by : id
  12. select_element_by : id
  13. select_element_by : id
  14. THIS IS THE KEY -- locator
  15. locator :
  16. locator :
  17. locator :
  18. locator :
  19. THIS IS THE KEY -- trailer
  20. trailer : click
  21. trailer : click
  22. trailer : click
  23. trailer : click
  24. THIS IS THE KEY -- trailer_text
  25. trailer_text :
  26. trailer_text :
  27. trailer_text :
  28. trailer_text :
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement