| Index: tools/perf/page_sets/popular_urls.py
|
| diff --git a/tools/perf/page_sets/popular_urls.py b/tools/perf/page_sets/popular_urls.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7f4dc6efdb0559404ddb26b9a55be7630cc61078
|
| --- /dev/null
|
| +++ b/tools/perf/page_sets/popular_urls.py
|
| @@ -0,0 +1,540 @@
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +from telemetry.page import page as page_module
|
| +from telemetry.page import shared_page_state
|
| +from telemetry import story
|
| +
|
| +
|
| +class PopularUrlsPage(page_module.Page):
|
| +
|
| + def __init__(self, url, page_set):
|
| + super(PopularUrlsPage, self).__init__(
|
| + url=url, page_set=page_set,
|
| + shared_page_state_class=shared_page_state.SharedMobilePageState,
|
| + credentials_path='data/credentials.json')
|
| +
|
| +urls_list = [
|
| + "about:crash",
|
| + "http://www.google.com/",
|
| + "http://www.facebook.com/",
|
| + "http://www.youtube.com/",
|
| + "http://www.yahoo.com/",
|
| + "http://www.baidu.com/",
|
| + "http://www.wikipedia.org/",
|
| + "http://www.live.com/",
|
| + "http://www.twitter.com/",
|
| + "http://www.qq.com/",
|
| + "http://www.amazon.com/",
|
| + "http://www.blogspot.com/",
|
| + "http://www.linkedin.com/",
|
| + "http://www.google.co.in/",
|
| + "http://www.taobao.com/",
|
| + "http://www.sina.com.cn/",
|
| + "http://www.yahoo.co.jp/",
|
| + "http://www.msn.com/",
|
| + "http://www.wordpress.com/",
|
| + "http://www.t.co/",
|
| + "http://www.google.de/",
|
| + "http://www.google.com.hk/",
|
| + "http://www.ebay.com/",
|
| + "http://www.googleusercontent.com/",
|
| + "http://www.google.co.uk/",
|
| + "http://www.google.co.jp/",
|
| + "http://www.yandex.ru/",
|
| + "http://www.163.com/",
|
| + "http://www.google.fr/",
|
| + "http://www.weibo.com/",
|
| + "http://www.bing.com/",
|
| + "http://www.microsoft.com/",
|
| + "http://www.google.com.br/",
|
| + "http://www.soso.com/",
|
| + "http://www.mail.ru/",
|
| + "http://www.tumblr.com/",
|
| + "http://www.pinterest.com/",
|
| + "http://www.paypal.com/",
|
| + "http://www.apple.com/",
|
| + "http://www.google.it/",
|
| + "http://www.vk.com/",
|
| + "http://www.blogger.com/",
|
| + "http://www.babylon.com/",
|
| + "http://www.google.es/",
|
| + "http://www.google.ru/",
|
| + "http://www.craigslist.org/",
|
| + "http://www.sohu.com/",
|
| + "http://www.imdb.com/",
|
| + "http://www.flickr.com/",
|
| + "http://www.bbc.co.uk/",
|
| + "http://www.tudou.com/",
|
| + "http://www.xvideos.com/",
|
| + "http://www.fc2.com/",
|
| + "http://www.go.com/",
|
| + "http://www.xhamster.com/",
|
| + "http://www.ask.com/",
|
| + "http://www.ifeng.com/",
|
| + "http://www.google.com.mx/",
|
| + "http://www.youku.com/",
|
| + "http://www.google.ca/",
|
| + "http://www.livejasmin.com/",
|
| + "http://www.tmall.com/",
|
| + "http://www.zedo.com/",
|
| + "http://www.imgur.com/",
|
| + "http://www.conduit.com/",
|
| + "http://www.odnoklassniki.ru/",
|
| + "http://www.cnn.com/",
|
| + "http://www.adobe.com/",
|
| + "http://www.google.co.id/",
|
| + "http://www.mediafire.com/",
|
| + "http://www.thepiratebay.se/",
|
| + "http://www.pornhub.com/",
|
| + "http://www.aol.com/",
|
| + "http://www.hao123.com/",
|
| + "http://www.espn.go.com/",
|
| + "http://www.alibaba.com/",
|
| + "http://www.ebay.de/",
|
| + "http://www.google.com.tr/",
|
| + "http://www.rakuten.co.jp/",
|
| + "http://www.about.com/",
|
| + "http://www.avg.com/",
|
| + "http://www.google.com.au/",
|
| + "http://www.blogspot.in/",
|
| + "http://www.wordpress.org/",
|
| + "http://www.chinaz.com/",
|
| + "http://www.ameblo.jp/",
|
| + "http://www.ebay.co.uk/",
|
| + "http://www.alipay.com/",
|
| + "http://www.godaddy.com/",
|
| + "http://www.amazon.de/",
|
| + "http://www.google.pl/",
|
| + "http://www.uol.com.br/",
|
| + "http://www.360buy.com/",
|
| + "http://www.stackoverflow.com/",
|
| + "http://www.amazon.co.jp/",
|
| + "http://www.renren.com/",
|
| + "http://www.bp.blogspot.com/",
|
| + "http://www.dailymotion.com/",
|
| + "http://www.huffingtonpost.com/",
|
| + "http://www.4shared.com/",
|
| + "http://www.globo.com/",
|
| + "http://www.mercadolivre.com.br/",
|
| + "http://www.vagalume.com.br/",
|
| + "http://www.letras.mus.br/",
|
| + "http://www.abril.com.br/",
|
| + "http://www.detik.com/",
|
| + "http://www.stafaband.info/",
|
| + "http://www.kaskus.co.id/",
|
| + "http://www.tribunnews.com/",
|
| + "http://www.kompas.com/",
|
| + "http://www.indianrail.gov.in/",
|
| + "http://www.flipkart.com/",
|
| + "http://www.snapdeal.com/",
|
| + "http://www.espncricinfo.com/",
|
| + "http://www.amazon.in/",
|
| + "http://www.cnet.com/",
|
| + "http://www.youporn.com/",
|
| + "http://www.netflix.com/",
|
| + "http://www.adf.ly/",
|
| + "http://www.livedoor.com/",
|
| + "http://www.douban.com/",
|
| + "http://www.redtube.com/",
|
| + "http://www.nytimes.com/",
|
| + "http://www.sogou.com/",
|
| + "http://www.amazon.co.uk/",
|
| + "http://www.google.nl/",
|
| + "http://www.vimeo.com/",
|
| + "http://www.google.com.sa/",
|
| + "http://www.weather.com/",
|
| + "http://www.badoo.com/",
|
| + "http://www.livejournal.com/",
|
| + "http://www.cnzz.com/",
|
| + "http://www.google.com.ar/",
|
| + "http://www.secureserver.net/",
|
| + "http://www.reddit.com/",
|
| + "http://www.yieldmanager.com/",
|
| + "http://www.torrentz.eu/",
|
| + "http://www.dailymail.co.uk/",
|
| + "http://www.addthis.com/",
|
| + "http://www.mywebsearch.com/",
|
| + "http://www.xnxx.com/",
|
| + "http://www.ehow.com/",
|
| + "http://www.bankofamerica.com/",
|
| + "http://www.tianya.cn/",
|
| + "http://www.deviantart.com/",
|
| + "http://www.pengyou.com/",
|
| + "http://www.tube8.com/",
|
| + "http://www.aweber.com/",
|
| + "http://www.wigetmedia.com/",
|
| + "http://www.google.com.pk/",
|
| + "http://www.goo.ne.jp/",
|
| + "http://www.indiatimes.com/",
|
| + "http://www.blogspot.com.br/",
|
| + "http://www.searchnu.com/",
|
| + "http://www.search-results.com/",
|
| + "http://www.google.co.th/",
|
| + "http://www.mozilla.org/",
|
| + "http://www.warriorforum.com/",
|
| + "http://www.sparkstudios.com/",
|
| + "http://www.answers.com/",
|
| + "http://www.google.cn/",
|
| + "http://www.dropbox.com/",
|
| + "http://www.naver.com/",
|
| + "http://www.stumbleupon.com/",
|
| + "http://www.google.com.eg/",
|
| + "http://www.58.com/",
|
| + "http://www.clicksor.com/",
|
| + "http://www.chase.com/",
|
| + "http://www.google.co.za/",
|
| + "http://www.pconline.com.cn/",
|
| + "http://www.sourceforge.net/",
|
| + "http://www.instagr.am/",
|
| + "http://www.filestube.com/",
|
| + "http://www.photobucket.com/",
|
| + "http://www.kat.ph/",
|
| + "http://www.360.cn/",
|
| + "http://www.amazonaws.com/",
|
| + "http://www.myspace.com/",
|
| + "http://www.etsy.com/",
|
| + "http://www.blogfa.com/",
|
| + "http://www.skype.com/",
|
| + "http://www.spiegel.de/",
|
| + "http://www.yesky.com/",
|
| + "http://www.wikimedia.org/",
|
| + "http://www.wikia.com/",
|
| + "http://www.reference.com/",
|
| + "http://www.xunlei.com/",
|
| + "http://www.statcounter.com/",
|
| + "http://www.google.com.my/",
|
| + "http://www.56.com/",
|
| + "http://www.google.co.ve/",
|
| + "http://www.slideshare.net/",
|
| + "http://www.booking.com/",
|
| + "http://www.fiverr.com/",
|
| + "http://www.rapidshare.com/",
|
| + "http://www.doubleclick.com/",
|
| + "http://www.wellsfargo.com/",
|
| + "http://www.adcash.com/",
|
| + "http://www.yelp.com/",
|
| + "http://www.ucoz.ru/",
|
| + "http://www.digg.com/",
|
| + "http://www.zol.com.cn/",
|
| + "http://www.depositfiles.com/",
|
| + "http://www.guardian.co.uk/",
|
| + "http://www.mgid.com/",
|
| + "http://www.walmart.com/",
|
| + "http://www.liveinternet.ru/",
|
| + "http://www.adultfriendfinder.com/",
|
| + "http://www.hootsuite.com/",
|
| + "http://www.foxnews.com/",
|
| + "http://www.google.com.co/",
|
| + "http://www.outbrain.com/",
|
| + "http://www.onet.pl/",
|
| + "http://www.comcast.net/",
|
| + "http://www.optmd.com/",
|
| + "http://www.download.com/",
|
| + "http://www.files.wordpress.com/",
|
| + "http://www.w3schools.com/",
|
| + "http://www.rediff.com/",
|
| + "http://www.allegro.pl/",
|
| + "http://www.zeekrewards.com/",
|
| + "http://www.taringa.net/",
|
| + "http://www.bild.de/",
|
| + "http://www.fbcdn.net/",
|
| + "http://www.google.gr/",
|
| + "http://www.google.be/",
|
| + "http://www.nicovideo.jp/",
|
| + "http://www.imageshack.us/",
|
| + "http://www.themeforest.net/",
|
| + "http://www.softonic.com/",
|
| + "http://www.squidoo.com/",
|
| + "http://www.google.com.vn/",
|
| + "http://www.free.fr/",
|
| + "http://www.domaintools.com/",
|
| + "http://www.google.com.tw/",
|
| + "http://www.archive.org/",
|
| + "http://www.scribd.com/",
|
| + "http://www.youjizz.com/",
|
| + "http://www.terra.com.br/",
|
| + "http://www.isohunt.com/",
|
| + "http://www.hulu.com/",
|
| + "http://www.xinhuanet.com/",
|
| + "http://www.y8.com/",
|
| + "http://www.soku.com/",
|
| + "http://www.ameba.jp/",
|
| + "http://www.rambler.ru/",
|
| + "http://www.wsj.com/",
|
| + "http://www.leboncoin.fr/",
|
| + "http://www.google.com.ua/",
|
| + "http://www.blogspot.com.es/",
|
| + "http://www.google.se/",
|
| + "http://www.php.net/",
|
| + "http://www.hostgator.com/",
|
| + "http://www.salesforce.com/",
|
| + "http://www.wordreference.com/",
|
| + "http://www.iqiyi.com/",
|
| + "http://www.repubblica.it/",
|
| + "http://www.google.at/",
|
| + "http://www.it168.com/",
|
| + "http://www.hudong.com/",
|
| + "http://www.tripadvisor.com/",
|
| + "http://www.aizhan.com/",
|
| + "http://www.google.ro/",
|
| + "http://www.9gag.com/",
|
| + "http://www.media.tumblr.com/",
|
| + "http://www.nba.com/",
|
| + "http://www.ups.com/",
|
| + "http://www.marca.com/",
|
| + "http://www.orange.fr/",
|
| + "http://www.hatena.ne.jp/",
|
| + "http://www.amazon.cn/",
|
| + "http://www.csdn.net/",
|
| + "http://www.tribalfusion.com/",
|
| + "http://www.clickbank.com/",
|
| + "http://www.google.com.ph/",
|
| + "http://www.xing.com/",
|
| + "http://www.forbes.com/",
|
| + "http://www.reuters.com/",
|
| + "http://www.daum.net/",
|
| + "http://www.cam4.com/",
|
| + "http://www.kaskus.us/",
|
| + "http://www.web.de/",
|
| + "http://www.youdao.com/",
|
| + "http://www.google.cl/",
|
| + "http://www.gmx.net/",
|
| + "http://www.rutracker.org/",
|
| + "http://www.linkwithin.com/",
|
| + "http://www.libero.it/",
|
| + "http://www.people.com.cn/",
|
| + "http://www.telegraph.co.uk/",
|
| + "http://www.mashable.com/",
|
| + "http://www.hp.com/",
|
| + "http://www.google.com.pe/",
|
| + "http://www.mixi.jp/",
|
| + "http://www.51.la/",
|
| + "http://www.wp.pl/",
|
| + "http://www.typepad.com/",
|
| + "http://www.thefreedictionary.com/",
|
| + "http://www.hardsextube.com/",
|
| + "http://www.china.com/",
|
| + "http://www.pandora.com/",
|
| + "http://www.indeed.com/",
|
| + "http://www.samsung.com/",
|
| + "http://www.tagged.com/",
|
| + "http://www.drtuber.com/",
|
| + "http://www.google.com.sg/",
|
| + "http://www.google.ch/",
|
| + "http://www.sweetim.com/",
|
| + "http://www.constantcontact.com/",
|
| + "http://www.ganji.com/",
|
| + "http://www.paipai.com/",
|
| + "http://www.hubpages.com/",
|
| + "http://www.kooora.com/",
|
| + "http://www.soundcloud.com/",
|
| + "http://www.letitbit.net/",
|
| + "http://www.goal.com/",
|
| + "http://www.blogspot.co.uk/",
|
| + "http://www.ikea.com/",
|
| + "http://www.letv.com/",
|
| + "http://www.xcar.com.cn/",
|
| + "http://www.google.com.ng/",
|
| + "http://www.pof.com/",
|
| + "http://www.homeway.com.cn/",
|
| + "http://www.angege.com/",
|
| + "http://www.soufun.com/",
|
| + "http://www.groupon.com/",
|
| + "http://www.target.com/",
|
| + "http://www.blogspot.it/",
|
| + "http://www.mlb.com/",
|
| + "http://www.narod.ru/",
|
| + "http://www.google.pt/",
|
| + "http://www.cj.com/",
|
| + "http://www.ezinearticles.com/",
|
| + "http://www.joomla.org/",
|
| + "http://www.orkut.com/",
|
| + "http://www.digitalpoint.com/",
|
| + "http://www.ebay.it/",
|
| + "http://www.dell.com/",
|
| + "http://www.4399.com/",
|
| + "http://www.kaixin001.com/",
|
| + "http://www.usps.com/",
|
| + "http://www.blogspot.jp/",
|
| + "http://www.maktoob.com/",
|
| + "http://www.uploaded.to/",
|
| + "http://www.xe.com/",
|
| + "http://www.washingtonpost.com/",
|
| + "http://www.bitauto.com/",
|
| + "http://www.justbeenpaid.com/",
|
| + "http://www.weebly.com/",
|
| + "http://www.alimama.com/",
|
| + "http://www.126.com/",
|
| + "http://www.corriere.it/",
|
| + "http://www.socialcam.com/",
|
| + "http://www.orkut.com.br/",
|
| + "http://www.lemonde.fr/",
|
| + "http://www.istockphoto.com/",
|
| + "http://www.bestbuy.com/",
|
| + "http://www.americanexpress.com/",
|
| + "http://www.shutterstock.com/",
|
| + "http://www.battle.net/",
|
| + "http://www.kakaku.com/",
|
| + "http://www.match.com/",
|
| + "http://www.putlocker.com/",
|
| + "http://www.blogspot.de/",
|
| + "http://www.leo.org/",
|
| + "http://www.elpais.com/",
|
| + "http://www.ku6.com/",
|
| + "http://www.github.com/",
|
| + "http://www.freelancer.com/",
|
| + "http://www.seesaa.net/",
|
| + "http://www.t-online.de/",
|
| + "http://www.ig.com.br/",
|
| + "http://www.ign.com/",
|
| + "http://www.google.ie/",
|
| + "http://www.seomoz.org/",
|
| + "http://www.nih.gov/",
|
| + "http://www.techcrunch.com/",
|
| + "http://www.51job.com/",
|
| + "http://www.nifty.com/",
|
| + "http://www.10086.cn/",
|
| + "http://www.trekaklik.com/",
|
| + "http://www.ning.com/",
|
| + "http://www.blogspot.mx/",
|
| + "http://www.att.com/",
|
| + "http://www.elmundo.es/",
|
| + "http://www.rapidgator.net/",
|
| + "http://www.over-blog.com/",
|
| + "http://www.pptv.com/",
|
| + "http://www.google.dz/",
|
| + "http://www.mop.com/",
|
| + "http://www.twitpic.com/",
|
| + "http://www.pchome.net/",
|
| + "http://www.ebay.com.au/",
|
| + "http://www.akamaihd.net/",
|
| + "http://www.autohome.com.cn/",
|
| + "http://www.vancl.com/",
|
| + "http://www.admin5.com/",
|
| + "http://www.in.com/",
|
| + "http://www.seznam.cz/",
|
| + "http://www.w3.org/",
|
| + "http://www.blogspot.fr/",
|
| + "http://www.twoo.com/",
|
| + "http://www.uimserv.net/",
|
| + "http://www.metacafe.com/",
|
| + "http://www.abcnews.go.com/",
|
| + "http://www.google.ae/",
|
| + "http://www.milliyet.com.tr/",
|
| + "http://www.mailchimp.com/",
|
| + "http://www.zimbio.com/",
|
| + "http://www.google.co.hu/",
|
| + "http://www.expedia.com/",
|
| + "http://www.ero-advertising.com/",
|
| + "http://www.gazeta.pl/",
|
| + "http://www.bet365.com/",
|
| + "http://www.dianping.com/",
|
| + "http://www.2345.com/",
|
| + "http://www.cntv.cn/",
|
| + "http://www.fedex.com/",
|
| + "http://www.google.dk/",
|
| + "http://www.webs.com/",
|
| + "http://www.hurriyet.com.tr/",
|
| + "http://www.bloomberg.com/",
|
| + "http://www.usatoday.com/",
|
| + "http://www.google.no/",
|
| + "http://www.2ch.net/",
|
| + "http://www.latimes.com/",
|
| + "http://www.google.cz/",
|
| + "http://www.extratorrent.com/",
|
| + "http://www.huanqiu.com/",
|
| + "http://www.warriorplus.com/",
|
| + "http://www.vnexpress.net/",
|
| + "http://www.amazon.fr/",
|
| + "http://www.surveymonkey.com/",
|
| + "http://www.infusionsoft.com/",
|
| + "http://www.bluehost.com/",
|
| + "http://www.twimg.com/",
|
| + "http://www.mihanblog.com/",
|
| + "http://www.ilivid.com/",
|
| + "http://www.histats.com/",
|
| + "http://www.39.net/",
|
| + "http://www.google.co.il/",
|
| + "http://www.ebay.fr/",
|
| + "http://www.gsmarena.com/",
|
| + "http://www.wretch.cc/",
|
| + "http://www.google.co.kr/",
|
| + "http://www.arpg2.com/",
|
| + "http://www.informer.com/",
|
| + "http://www.aliexpress.com/",
|
| + "http://www.speedtest.net/",
|
| + "http://www.peyvandha.ir/",
|
| + "http://www.chinanews.com/",
|
| + "http://www.irctc.co.in/",
|
| + "http://www.drudgereport.com/",
|
| + "http://www.jobrapido.com/",
|
| + "http://www.sakura.ne.jp/",
|
| + "http://www.dianxin.cn/",
|
| + "http://www.enet.com.cn/",
|
| + "http://www.drupal.org/",
|
| + "http://www.mynet.com/",
|
| + "http://www.shaadi.com/",
|
| + "http://www.sergey-mavrodi.com/",
|
| + "http://www.lefigaro.fr/",
|
| + "http://www.rr.com/",
|
| + "http://www.newegg.com/",
|
| + "http://www.viadeo.com/",
|
| + "http://www.delicious.com/",
|
| + "http://www.livescore.com/",
|
| + "http://www.commentcamarche.net/",
|
| + "http://www.bitly.com/",
|
| + "http://www.pcauto.com.cn/",
|
| + "http://www.hdfcbank.com/",
|
| + "http://www.website-unavailable.com/",
|
| + "http://www.meetup.com/",
|
| + "http://www.eastmoney.com/",
|
| + "http://www.fotolia.com/",
|
| + "http://www.ovh.net/",
|
| + "http://www.analyrics.com/",
|
| + "http://www.hotfile.com/",
|
| + "http://www.multiply.com/",
|
| + "http://www.yandex.ua/",
|
| + "http://www.dmm.co.jp/",
|
| + "http://www.mpnrs.com/",
|
| + "http://www.biglobe.ne.jp/",
|
| + "http://www.swagbucks.com/",
|
| + "http://www.888.com/",
|
| + "http://www.engadget.com/",
|
| + "http://www.naukri.com/",
|
| + "http://www.quickmeme.com/",
|
| + "http://www.tmz.com/",
|
| + "http://www.google.fi/",
|
| + "http://www.spankwire.com/",
|
| + "http://www.itau.com.br/",
|
| + "http://www.movie2k.to/",
|
| + "http://www.turbobit.net/",
|
| + "http://www.zillow.com/",
|
| + "http://www.ebay.in/",
|
| + "http://www.softpedia.com/",
|
| + "http://www.jiayuan.com/",
|
| + "http://www.agoda.com/",
|
| + "http://www.chip.de/",
|
| + "http://www.wix.com/",
|
| + "http://www.capitalone.com/",
|
| + "http://www.avito.ru/",
|
| + "http://www.livingsocial.com/",
|
| + "http://www.115.com/",
|
| + "http://www.blackhatworld.com/",
|
| + "http://www.clixsense.com/",
|
| + "http://www.zanox.com/",
|
| + "http://www.ibm.com/",
|
| + "http://www.funmoods.com/",
|
| +]
|
| +
|
| +class PopularUrlsPageSet(story.StorySet):
|
| + """Visit list of popular urls from webpage replay."""
|
| +
|
| + def __init__(self):
|
| + super(PopularUrlsPageSet, self).__init__(
|
| + archive_data_file='data/popular_urls.json',
|
| + cloud_storage_bucket=story.INTERNAL_BUCKET)
|
| +
|
| + for url in urls_list:
|
| + self.AddStory(PopularUrlsPage(url, self))
|
|
|