This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import time | |
| import getpass | |
| import argparse | |
| import logging | |
| from selenium import webdriver | |
| from selenium.webdriver.common.by import By | |
| from selenium.webdriver.common.keys import Keys | |
| from selenium.webdriver.support.wait import WebDriverWait |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function search(obj, string) { | |
| const maxDepth = 10; | |
| const excludeKeys = ["_root"]; | |
| function isObject(val) { | |
| return typeof val === "function" || typeof val === "object"; | |
| } | |
| function traverse(obj, depth, path) { | |
| // Guard clause |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Google Search Query Generator</title> | |
| <style> | |
| body { | |
| font-family: Arial, sans-serif; | |
| margin: 0; |
OlderNewer