Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. {
  2. "myCmp": {
  3. "detectors": [
  4. {
  5. "presentMatcher": {
  6. "type": "css",
  7. "target": {
  8. "selector": "[data-feature-id='page/gdpr-consent']"
  9. }
  10. },
  11. "showingMatcher": {
  12. "type": "css",
  13. "target": {
  14. "selector": "[data-feature-id='page/gdpr-consent'] .continue-btn.button.free"
  15. }
  16. }
  17. }
  18. ],
  19. "methods": [
  20. {
  21. "name": "OPEN_OPTIONS",
  22. "action": {
  23. "type": "click",
  24. "target": {
  25. "selector": ".continue-btn.button.free"
  26. }
  27. }
  28. },
  29. {
  30. "name": "DO_CONSENT",
  31. "action": {
  32. "type": "list",
  33. "actions": [
  34. {
  35. "type": "waitcss",
  36. "target": {
  37. "selector": ".agree-lbl"
  38. },
  39. "retries": 10,
  40. "waitTime": 250,
  41. "negated": false
  42. },
  43. {
  44. "type": "click",
  45. "target": {
  46. "selector": ".agree-lbl"
  47. }
  48. }
  49. ]
  50. }
  51. },
  52. {
  53. "name": "SAVE_CONSENT",
  54. "action": {
  55. "type": "click",
  56. "target": {
  57. "selector": ".continue-btn button accept-consent"
  58. }
  59. }
  60. },
  61. {
  62. "name": "HIDE_CMP",
  63. "action": null
  64. }
  65. ]
  66. }
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement