Lines Matching full:urls
63 help="Open given urls in a single tab.")
70 help="Open given urls in separate tabs "
77 help="Open given urls in separate tabs infinitely.")
133 "--urls",
135 dest="urls",
136 help="List of urls and durations to load: url,seconds,...")
147 "--urls-file",
150 help=("List of urls and durations in a line-by-line file. "
207 # Double check that the urls are unique
208 urls = set(page_config.first_url for page_config in config.pages)
209 if len(urls) != len(config.pages):
211 "Got non-unique story labels and urls.")
253 Use --urls/--stories to either choose from an existing set of pages, or direct
254 URLs. After each page you can also specify a custom wait/load duration in
255 seconds. Multiple URLs/page names can be provided as a comma-separated list.
260 --urls=amazon
261 --urls=http://cnn.com,10s
262 --urls=http://twitter.com,5s,http://cnn.com,10s
302 if args.urls:
303 # TODO: make urls and stories mutually exclusive.
306 "Cannot specify --urls and --stories at the same time.")
307 args.stories = args.urls