Browser Automation

Author

Piotr Sapiezynski and Leon Yin

Published

June 11, 2023

Modified

June 17, 2023

Browser automation is a fundamental web scraping technique for building your own dataset.

It is essential for investigating personalization, working with rendered elements, and waiting for scripts and code to execute on a web page.

However, browser automation can be resource intensive and slow compared to other data collection approaches.

👉Click here to jump to the Selenium tutorial.

Intro

If you’ve tried to buy concert tickets to a popular act lately, you’ve probably watched in horror as the blue “available” seats evaporate before your eyes the instant tickets are released. Part of that may be pure ✨star power✨, but more than likely, bots were programmed to buy tickets to be resold at a premium.

These bots are programmed to act like an eager fan: waiting in the queue, selecting a seat, and paying for the show. These tasks can all be executed using browser automation.

Browser automation is used to programmatically interact with web applications.

The most frequent use case for browser automation is to run tests on websites by simulating user behavior (mouse clicks, scrolling, and filling out forms). This is routine and invisible work that you wouldn’t remember, unlike seeing your dream of crowd surfing with your favorite musician disappear thanks to ticket-buying bots.

But browser automation has another use, one which may make your dreams come true: web scraping.

Browser automation isn’t always the best solution for building a dataset, but it is necessary when you need to:

  1. Analyze rendered HTML: see what’s on a website as a user would.
  2. Simulate user behavior: experiment with personalization and experience a website as a user would.
  3. Trigger event execution: retrieve responses to JavaScript or network requests following an action.

These reasons are often interrelated. We will walk through case studies (below) that highlight at least one of these strengths, as well as why browser automation was a necessary choice.

Some popular browser automation tools are Puppeteer, Playwright, and Selenium.

Headless Browsing

Browser automation can be executed in a “headless” state by some tools.

This doesn’t mean that the browser is a ghost or anything like that, it just means that the user interface is not visible.

One benefit of headless browsing is that it is less resource intensive, however there is no visibility into what the browser is doing, making headless scrapers difficult to debug.

Luckily, some browser automation tools (such as Selenium) allow you to toggle headless browsing on and off. Other tools, such as Puppeteer only allow you to use headless browsing.

If you’re new to browser automation, we suggest not using headless browsing off the bat. Instead try Selenium (or Playwright), which is exactly what we’ll do in the tutorial below.

Using Selenium to automate browsing TikTok’s “For You” page for food videos.

Case Studies

Case Study 2: Deanonymizing Google’s Ad Network

Google ad sellers offer space on websites like virtual billboards, and are compensated by Google after an ad is shown. However, unlike physical ad sellers, almost all of the ~1.3 million ad sellers on Google are anonymous. To limit transparency further, multiple websites and apps can be monetized by the same seller, and it’s not clear which websites are part of Google’s ad network in the first place.

As a result, advertisers and the public do not know who is making money from Google ads. Fortunately, watchdog groups, industry analysts, and reporters have developed methods to hold Google accountable for this oversight.

The methods boil down to triggering a JavaScript function that sends a request to Google to show an ad on a loaded web page. Importantly, the request reveals the seller ID used to monetize the website displaying the ad, and in doing so, links the seller ID to the website.

In 2022, reporters from ProPublica used Playwrite to automated this process to visit 7 million websites and deanonymize over 900,000 Google ad sellers. Their investigation found some websites were able to monetize advertisements, despite breaking Google’s policies.

ProPublica’s investigation used browser automation tools to trigger event execution to successfully load ads. Often, this required waiting a page to fully render, scrolling down to potential ad space, and browsing multiple pages. The reporters used a combination of network requests, rendered HTML, and cross-referencing screenshots to confirm that each website monetized ads from Google’s ad network.

Browser automation can help you trawl for clues, especially when it comes to looking for specific network requests sent to a central player by many different websites.

Case Study 3: TikTok Personalization

An investigation conducted by the Wall Street Journal, “Inside TikTok’s Algorithm” found that even when a user does not like, share, or follow any creators, TikTok still personalizes their “For You” page based on how long they watch the recommended videos.

In particular, the WSJ investigation found that users who watch content related to depression and skip other content are soon presented with mental health content and little else. Importantly, this effect happened even when the users did not explicitly like or share any videos, nor did they follow any creators.

You can watch the WSJ’s video showing how they mimic user behavior to study the effects of personalization:

Source: WSJ

This investigation was possible only after simulating user behavior and triggering personalization from TikTok’s “For You” recommendations.

Tutorial

In the hands-on tutorial we will attempt to study personalization on TikTok with a mock experiment.

We’re going to teach you the basics of browser automation in Selenium, but the techniques we’ll discuss could be used to study any other website using any other automation tool.

We will try to replicate elements of the WSJ investigation and see if we can trigger a personalized “For You” page. Although the WSJ ran their investigation using an Android on a Raspberry Pi, we will try our luck with something you can run locally on a personal computer using browser automation.

In this tutorial we’ll use Selenium to watch TikTok videos where the description mentions keywords of our choosing, while skipping all others. In doing so, you will learn practical skills such as:

  • Setting up the automated browser in Python
  • Hiding signs that are easy tells of an automated browser
  • Finding particular elements on the screen, extracting their content, and interacting with them
  • Scrolling
  • Taking screenshots

Importantly, we’ll be watching videos with lighter topics than depression (the example chosen in the WSJ investigation.).

Pro tip: Minimizing harms

When developing an audit or investigation, start with low-stakes themes: both to minimize your exposure to harmful content and to avoid boosting their popularity, unnecessarily.

Step 1: Setting up the browser

Our setup will consist of a real browser and an interface that will allow us to control that browser using Python. We chose Google Chrome because it’s the most popular browser and easy enough (famous last words) to set up.

1.1 Installing Google Chrome

Please download the most recent version here.

If you already have Google Chrome installed, make sure it’s a latest version by opening Chrome and pasting this address in the address bar: chrome://settings/help. Now verify that there are no pending updates.

1.2 Installing the webdriver

The webdriver is our interface between Python and the browser. It is specific to the browser (there are different webdrivers for Firefox [called Gecko], Safari, etc) and even to the particular version of the browser. It’s easier to ensure we are working with the correct version by installing a webdriver that automatically detects the current version of Chrome.

Run the code in the cell below to download the Python package chromedriver-binary-auto. Adding an exclamation mark before code in Jupyter notebook allows you to run commands as if you were in your computer terminal’s command line

!pip install chromedriver-binary-auto --upgrade
Requirement already satisfied: chromedriver-binary-auto in /Users/leon/miniconda3/lib/python3.7/site-packages (0.2.6)
Collecting chromedriver-binary-auto
  Downloading chromedriver-binary-auto-0.3.1.tar.gz (5.6 kB)
  Preparing metadata (setup.py) ... done
Building wheels for collected packages: chromedriver-binary-auto
  Building wheel for chromedriver-binary-auto (setup.py) ... done
  Created wheel for chromedriver-binary-auto: filename=chromedriver_binary_auto-0.3.1-py3-none-any.whl size=8766235 sha256=f391019058992cc819aa8f6b7feb58bf2ef7477951fdfc91c4ae9a8079531d04
  Stored in directory: /Users/leon/Library/Caches/pip/wheels/59/5a/a1/80470a1f46c83d62550af8d40634bdb8bc5f034d910d80ff2b
Successfully built chromedriver-binary-auto
Installing collected packages: chromedriver-binary-auto
  Attempting uninstall: chromedriver-binary-auto
    Found existing installation: chromedriver-binary-auto 0.2.6
    Uninstalling chromedriver-binary-auto-0.2.6:
      Successfully uninstalled chromedriver-binary-auto-0.2.6
Successfully installed chromedriver-binary-auto-0.3.1

Let’s see if the installation worked correctly! Run the cell below to import the correct webdriver and open a new Chrome window.

from selenium import webdriver
import chromedriver_binary # adds the chromedriver binary to the path

driver = webdriver.Chrome()

The chrome-driver-auto package should have installed a driver that’s suitable for your current Chrome version running the line of code above should have opened a new Chrome window.

This step is notoriously hard, and you might get a version mismatch error:

SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 112
Current browser version is 113 with binary path /Applications/Google Chrome.app/Contents/MacOS/Google Chrome

It means that you probably updated your Chrome in the meantime. To fix it, reinstall the Python package:

!pip install --upgrade --force-reinstall chromedriver-binary-auto
Collecting chromedriver-binary-auto
  Using cached chromedriver_binary_auto-0.2.6-py3-none-any.whl
Installing collected packages: chromedriver-binary-auto
  Attempting uninstall: chromedriver-binary-auto
    Found existing installation: chromedriver-binary-auto 0.2.6
    Uninstalling chromedriver-binary-auto-0.2.6:
      Successfully uninstalled chromedriver-binary-auto-0.2.6
Successfully installed chromedriver-binary-auto-0.2.6

If everything works fine and you have the window open, our setup is complete and you can now close the Chrome window:

driver.close()

Step 2: Hiding typical tells of an automated browser

When you open Chrome with Selenium you’ll notice that the window displays a warning about being an “automated session”. Even though the warning is only displayed to you, the webdriver leaves behind other red flags that inform website administrators that you are using browser automation.

The website admins will use these red flags to refuse service to your browser.

Let’s remove those.

options = webdriver.ChromeOptions()
options.add_argument("start-maximized")

# remove all signs of this being an automated browser
options.add_argument('--disable-blink-features=AutomationControlled')
options.add_experimental_option("excludeSwitches", ["enable-automation"])
options.add_experimental_option('useAutomationExtension', False)

# open the browser with the new options
driver = webdriver.Chrome(options=options)
driver.get('https://tiktok.com/foryou')

This should open a new window without those warnings and navigate to tiktok.com:

Step 3: Finding elements on page and interacting with them

We will perform our mock experiment without logging in (but we will also learn how to create multiple accounts and how to log in later).

Instead of logging in, our first interaction will be dismissing this login window. Doing this programmatically has two steps:

  1. We need to identify that [X] button in the page source
  2. And then click it

Let’s inspect the button element:

In my case, the particular element that the Developer Tools navigated to is just the graphic on the button, not the button itself, but you can still find the actual button by hovering your mouse over different elements in the source and seeing what elements on page are highlighted:

Our close button is a <div> element, whose data-e2e attribute is "modal-close-inner-button".

There are many ways to fish for the exact element you want, and many of those methods are built into Selenium. One way to find it would be using a CSS_SELECTOR, like so:

from selenium.webdriver.common.by import By

close_button = driver.find_element(By.CSS_SELECTOR, '[data-e2e="modal-close-inner-button"]')
close_button
<selenium.webdriver.remote.webelement.WebElement (session="710ad56950f0c245bc25a21b57ccf110", element="CD049116A9F70D8AA3FE1F0BC1BBEB15_element_298")>

If Selenium successfully finds an element, you’ll get a WebElement object of the first match. However, if Selenium does not find the element– for example because the element hasn’t loaded yet, you will get an empty object in return. This will crash your script if you try to interact with the empty element.

One thing you can do is to tell Selenium to wait up to X_seconds for that particular element before trying to click on it, like this:

from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

# let's wait up to 20 seconds
X_seconds = 20
wait = WebDriverWait(driver, timeout = X_seconds)
wait.until(EC.visibility_of_element_located((By.CSS_SELECTOR, '[data-e2e="modal-close-inner-button"]')))

# this line will only execute whenever the element was found (or after 20 seconds it it wasn't)
close_button = driver.find_element(By.CSS_SELECTOR, '[data-e2e="modal-close-inner-button"]')
close_button
<selenium.webdriver.remote.webelement.WebElement (session="64b92d16043e500c3630742e6fa746d2", element="7B4533C51CF631265A8665122C637150_element_45")>

We seem to have found something, let’s click it! WebElements come equipped with special functions you can use to interact with them:

close_button.click()

Did you notice a change on the page? Congratulations! You just automated the browser to click something.

Step 4: Scrolling

We now have a browser instance open and displaying the For You page. Let’s scroll through the videos.

If you are a real person who (for whatever reason) visits TikTok on their computer, you could press the down key the keyboard to see new videos. We will do that programmatically instead:

from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.keys import Keys

actions = ActionChains(driver)
actions.send_keys(Keys.ARROW_DOWN)
actions.perform()

When you run the cell above you will see that your browser scrolls down to the next video. You just automated scrolling!

Step 5: Finding TikTok videos on the page

Now that the site loaded and you can browse it, let’s find all the TikTok videos that are displayed and extract the information (called metadata) from each of them.

  1. Right click on the white space around a TikTok video and choose “Inspect”. Inspect Element
  2. Hover your mouse over the surrounding <div> elements and observe the highlighted elements on the page to see which ones correspond to each TikTok video. Inspect Element
  3. You will see that each video is in a separate <div> container but each of these containers has the same data-e2e attribute with the value of recommend-list-item-container.
  4. Similarly to how we found the close button, we can now use this to find all videos on page:
videos = driver.find_elements(By.CSS_SELECTOR, '[data-e2e="recommend-list-item-container"]')

When we searched for the “dismiss” button we used the driver.find_element() function because we were only interested in the first element that matched our CSS selector.

Now we’re trying to find all videos on page, so we use the driver.find_elements() function instead - it returns the complete list of elements that match the selector.

videos
[<selenium.webdriver.remote.webelement.WebElement (session="64b92d16043e500c3630742e6fa746d2", element="7B4533C51CF631265A8665122C637150_element_73")>,
 <selenium.webdriver.remote.webelement.WebElement (session="64b92d16043e500c3630742e6fa746d2", element="7B4533C51CF631265A8665122C637150_element_78")>,
 <selenium.webdriver.remote.webelement.WebElement (session="64b92d16043e500c3630742e6fa746d2", element="7B4533C51CF631265A8665122C637150_element_101")>,
 <selenium.webdriver.remote.webelement.WebElement (session="64b92d16043e500c3630742e6fa746d2", element="7B4533C51CF631265A8665122C637150_element_160")>,
 <selenium.webdriver.remote.webelement.WebElement (session="64b92d16043e500c3630742e6fa746d2", element="7B4533C51CF631265A8665122C637150_element_161")>,
 <selenium.webdriver.remote.webelement.WebElement (session="64b92d16043e500c3630742e6fa746d2", element="7B4533C51CF631265A8665122C637150_element_162")>,
 <selenium.webdriver.remote.webelement.WebElement (session="64b92d16043e500c3630742e6fa746d2", element="7B4533C51CF631265A8665122C637150_element_163")>,
 <selenium.webdriver.remote.webelement.WebElement (session="64b92d16043e500c3630742e6fa746d2", element="7B4533C51CF631265A8665122C637150_element_164")>,
 <selenium.webdriver.remote.webelement.WebElement (session="64b92d16043e500c3630742e6fa746d2", element="7B4533C51CF631265A8665122C637150_element_165")>]

Step 6: Parsing TikTok metadata

Now that we found all the TikTok videos on the page, let’s extract the description from each - this is how we will decide whether to watch the video, or to skip it. The process of extracting a specific field from a webpage is “parsing”.

  1. Pick any description, right click, “Inspect”.
  2. Let’s locate the <div> that contains the whole description (including any hashtags) and make note of its data-e2s attribute.
  3. Now let’s write the code that, extracts the description from a single video (note that you can get the text content of any element by calling element.text)
for video in videos:
    print(video.find_element(By.CSS_SELECTOR, '[data-e2e="video-desc"]').text)

The last one 😂😂 #pet #cat #dog #cute #animals #funny #foryou #fyp
الرد على @hadeelalsamare #اكسبلور #fyp #fypシ
BEST MAGIC TRICKS REVEALED 😱😳 #magician #learnfromme #foru #popular
The most Useful Toy ever! 2 😂 #fun #play #fyp
Iphone 13 pro max #repair #tamarshabi🥰 תיקון
Herb-Crusted Rack of Lamb 😍 #lamb #easyrecipe #easyrecipes #asmrfood #foodtok #cooktok #dinnerwithme #homecook #homecooking #dinnerideas #dinnerparty
#fyp #halsey #geazy #scandal
شو رأيكم كان فيها تكفي اللقمة اللي بتمها؟ 😐#hasanandhawraa #ramdan2023 #رمضان_يجمعنا #رمضان

Note: We previously searched for elements using driver.find_element() and driver.find_elements(). That allowed us to search the whole page. Notice that here, instead of driver, we’re using a particular element which we called video: this way we can search for elements within an element, rather than on the whole page.

Step 7: Finding the TikTok video that’s currently playing

We know how to scroll to the next video, and we know how to find all videos that are loaded. At this point we could either:

  1. Assume that at the beginning, the 0th video is playing, and then every time we press arrow down, the next video is being displayed
  2. Assume that the arrow down does not always work and each time verify which video is actually playing

The problem with the first approach is that even if scrolling fails just once, our experiment will be compromised (after it happens we will be watching and skipping different videos that our script tells us). This is why we will go with the second approach and verify which video is actually playing. Back to our favorite tool- inspect element!

When you right click on the playing video, you will see that instead of our familiar UI we get a custom TikTok menu, so that won’t work. Try right-clicking on the description of the video instead, then hovering over different elements in the inspector and expanding the one that highlights the video in the browser. Dig deep until you get to the div that only contains the video.

Still in the inspector try looking at the video below. You will see that the div that contains the video is missing and there is no element with the tag name video. That’s how we can find if the video is currently playing - its div will contain the video element that we can find by TAG_NAME:

for video in videos:
    description = video.find_element(By.CSS_SELECTOR, '[data-e2e="video-desc"]').text
    if video.find_elements(By.TAG_NAME, 'video'):
        playing = 'playing'
    else:
        playing = 'not playing'
    print(playing, description)
playing 
not playing The last one 😂😂 #pet #cat #dog #cute #animals #funny #foryou #fyp
not playing الرد على @hadeelalsamare #اكسبلور #fyp #fypシ
not playing BEST MAGIC TRICKS REVEALED 😱😳 #magician #learnfromme #foru #popular
not playing The most Useful Toy ever! 2 😂 #fun #play #fyp
not playing Iphone 13 pro max #repair #tamarshabi🥰 תיקון
not playing Herb-Crusted Rack of Lamb 😍 #lamb #easyrecipe #easyrecipes #asmrfood #foodtok #cooktok #dinnerwithme #homecook #homecooking #dinnerideas #dinnerparty
not playing #fyp #halsey #geazy #scandal
not playing شو رأيكم كان فيها تكفي اللقمة اللي بتمها؟ 😐#hasanandhawraa #ramdan2023 #رمضان_يجمعنا #رمضان

Step 8: Taking screenshots and saving page source

The presentation of your results might be more compelling, when its accompanied by screenshots, rather than just data. Selenium allows you to take screenshots of the whole screen, or just a particular element (though the latter is a bit cumbersome):

# take a screenshot of the whole browser
driver.save_screenshot('full_screenshot.png')

# take a screenshot of just one video
screenshot = video.screenshot_as_png
with open('element_screenshot.png', 'wb') as output:
    output.write(screenshot)

In the spirit of bringing receipts, you can also save the entire webpage to parse it later.

# save the source of the entire page
page_html = driver.page_source
with open('webpage.html', 'w') as output:
    output.write(page_html)
Pro tip: Keep these records to sanity check your results

Taking a screenshot and saving the page source is a useful practice for checking your work. Use the two to cross-reference what was visible in the browser and whatever data you end up extracting during the parsing step.

Let’s close the browser for now, and kick this workflow up a notch.

driver.close()

Step 9: Putting it all together

At this point, we can read the description of TikTok videos and navigate the “For You” page.

That’s most of the setup we need to try our mock experiment:
let’s watch all TikTok videos that mention food in the description and skip videos that do not mention food.

After one hundred videos, we will see whether we are served videos from FoodTok more frequently than other topics.

Pro tip: Use functions!

So far we wrote code to open the browser, close the dialog, and find videos as separate cells in the notebook. We could copy that code over here to use it, but it will be much easier to understand and maintain the code if we write clean, well-documented functions with descriptive names.

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

import chromedriver_binary



def open_browser():
    """
    Opens a new automated browser window with all tell-tales of automated browser disabled
    """
    options = webdriver.ChromeOptions()
    options.add_argument("start-maximized")

    # remove all signs of this being an automated browser
    options.add_argument('--disable-blink-features=AutomationControlled')
    options.add_experimental_option("excludeSwitches", ["enable-automation"])
    options.add_experimental_option('useAutomationExtension', False)

    # open the browser with the new options
    driver = webdriver.Chrome(options=options)
    return driver

def close_login_dialog(driver):
    """
    Waits for the login dialog to appear, then closes it
    """
    
    # rather than trying to click a button that might have not loaded yet, we will 
    # wait up to 20 seconds for it to actually appear first
    wait = WebDriverWait(driver, timeout = 20)
    wait.until(EC.visibility_of_element_located((By.CSS_SELECTOR, '[data-e2e="modal-close-inner-button"]')))
   
    close_button = driver.find_element(By.CSS_SELECTOR, '[data-e2e="modal-close-inner-button"]')
    if close_button:
        close_button.click()

def arrow_down(driver):
    """
    Sends the ARROW_DOWN key to a webdriver instance.
    """
    actions = ActionChains(driver)
    actions.send_keys(Keys.ARROW_DOWN)
    actions.perform()
    
def find_videos(driver):
    """
    Finds all tiktoks loaded in the browser
    """
    videos = driver.find_elements(By.CSS_SELECTOR, '[data-e2e="recommend-list-item-container"]')
    return videos

def get_description(video):
    """
    Extracts the video description along with any hashtags
    """
    try:
        description = video.find_element(By.CSS_SELECTOR, '[data-e2e="video-desc"]').text
    except:
        # if the description is missing, just get any text from the video
        description = video.text
    return description

def get_current(videos):
    """
    Given the list of videos it returns the one that's currently playing
    """
    for video in videos:
        if video.find_elements(By.TAG_NAME, 'video'):
            # this one has the video, we can return it and that ends the function.
            return video
    
    return None

def is_target_video(description, keywords):
    """
    Looks for keywords in the given description. 
    NOTE: only looks for the substring IE partial match is enough.
    Returns `True` if there are any or `False` when there are none.
    """
    # check in any of the keywords is in the description
    for keyword in keywords:
        if keyword in description:
            # we have a video of interest, let's watch it 
            return True
    
    # if we're still here it means no keywords were found
    return False

def screenshot(video, filename="screenshot.png"):
    """
    Saves a screenshot of a given video to a specified file
    """
    screenshot = video.screenshot_as_png
    with open(filename, 'wb') as output:
        output.write(screenshot)
    
def save_source(driver, filename="screenshot.html"):
    """
    Saves the browser HTML to a file
    """
    page_html = driver.page_source
    with open('webpage.html', 'w') as output:
        output.write(page_html)

Ok, with that out of the way, let’s set up our first data collection.

First, let’s make a directory to save screenshots. We will save screenshots here whenever we find a video related to food.

import os

os.makedirs('data/screenshots/', exist_ok=True)
import time

# if the description has any one these words, we will watch the video
keywords = ['food', 'dish', 'cook', 'pizza', 'recipe', 'mukbang', 'dinner', 'foodie', 'restaurant']

# this is where will we store decisions we take
decisions = []

# open a browser, and go to TikTok's For You page.
driver = open_browser()
driver.get('https://tiktok.com/foryou')
close_login_dialog(driver)

for tiktok_index in range(0, 100):
    # get all videos
    tiktoks = find_videos(driver)
    
    # the current tiktok is the one that's currently showing the video player
    current_video = get_current(tiktoks)
    
    if current_video is None:
        print('no more videos')
        break
              
    # read the description of the video
    description = get_description(current_video)
    
    # categorize the video as relevant to `keywords` or not.
    contains_keyword = is_target_video(description, keywords)
    decisions.append(contains_keyword )
            
    print(tiktok_index, contains_keyword, description)
    
    if contains_keyword:
        # we have a video of interest, let's take a screenshot
        ## here we declare the files we'll save. they're named according to their order.
        fn_screenshot = f"data/screenshots/screenshot_{tiktok_index:05}.png"
        fn_page_soure = fn_screenshot.replace('.png', '.html')
        screenshot(current_video, fn_screenshot)
        save_source(driver, fn_page_source)
        # and now watch it for 30 seconds
        time.sleep(30)
    
    # move to the next video
    arrow_down(driver)
    time.sleep(2)
    
driver.close()
0 False ДО КОНЦА😂 а какой у тебя рост?
1 False • Reprodução: (SBT/Programa Raul Gil) 🇧🇷
#combateaosuicidio
2 False #stitch #이어찍기 #추천 #fyp #viral #xyzbca #korean #おすすめ
3 True Cuando hago papas de esta manera, todos me preguntan por la receta😋😱#viral #parati #recetas #cocina #recetasfaciles #papa #queso #jamon #food #saborestiktok
4 False #ومش_هزود_في_الملام #explore
#fypシ #foryoupage #fyp #viral
#مش_هنظبط_الريتش_بقي🖤 #حزين
#حالات_واتس_حزينه💔 #foryou
5 False #PasiondeGavilanes #telenovelacolombiana
6 False #accident a veces pasa de todo 👉 sigueme para PARTE 2.
7 False Zjedzcie se tez cos fajnego dzis #gotowaniezdominika
8 False كيف تكتب اسم يوسف بخط جميل♥️🌹-
-
-
-
9 False بنت الجنوب 🔥🤍🇹🇳#مطماطة_قابس_تونس #اكسبلور
10 False Game on
11 False Чи бачите різницю між фото? Чи бачите які кадри зроблені на дорогу , а які на дешеву камеру? ☺️ #фотограф #фотоапарат #обзор #фотографія
12 False #bendiciones #mideseo #TikTok #viral #
13 False The most Useful Toy ever! 2 😂 #fun #play #fyp
14 False Replying to @user4034722293618
15 False jajeczniczka z kielbasiana
16 False كام مره بكيت ؟ 🥺💔🎧 #المصمم_sheko🎧 #الرتش_فى_زمه_الله💔 #حالات_واتس #شاشه_سوداء #مصمم_حالات_واتس_شاشه_سوداء #fypシ #foryou #fyp #viral #music #tiktok
17 False #movie #movieclip #fyp
18 False Я ПРОТИВ КУРЕНИЯ, А ВЫ?
19 False Uno de nuestros trends favoritos 😍🍭 @SHICKO 💊 @N E N A 🍓
20 False Esse final me quebrou…🥺💛

🎥Filme: Extraordinário

#disciplina #motivacional #trechosvisionarios #extraordinar
21 False Parece que o Vin Diesel curtiu “Vai Sentando” 😅
22 False Para mi mama una niña valiente ♥️💕🇺🇸#parati #parati #parati #parati #parati #fyp #fyp #viral #viral #viral #viral #viral #viral #vistas #vistas #vistas ##vistas #vistas #muyviral @TikTok
23 False #drawing #viralvideo🔥 #fypシ゚viral
24 False شو رأيكم كان فيها تكفي اللقمة اللي بتمها؟ 😐#hasanandhawraa #ramdan2023 #رمضان_يجمعنا #رمضان
25 False Brock is always there to save the day 🦈💪🏼 #wwe #wrestling #wrestlingmemes #brocklesnar #wweisfake #fakesituation #sharkattack #sharks #wwe2023 #nextgen #wwenetwork #smackdown #wwefan #bodybuilding #beach #holiday #pool #sea
26 False HONEY, I SEE YOU #foryou #omspxd #music #mashonda #fyp #lyrics #speed #spedup #🎧
27 False #fyp #mrbeast #foryou wow 😳😲
28 False 
29 False Sometimes its better to save your breathe. #trauma #traumahealing #awakining #love #relationship #relatable #loveyourself #men #women #healing #problems #girltalk #therapy #couple #mom #fyp #fypシ #emotion
30 False I love my body 🥰💜.. Dc: @Dance God 🦅🇬🇭 #purplespeedy
31 False raye mi camioneta por ustedes jajajajajajaja
32 False 
33 False My new car #catsoftiktok #fyp #fypシ
34 False 
35 False Fiz um almoço insano! @Mateus ASMR
36 False #bajonesemocionales #🥀💔
37 False Don't mess with Cristiano 😤|| #cristianoronaldo #cr7 #mufc #intermilan #manutd #viral #ucl #tiktoktrending
38 False This Small Town Farmer Better Buckle Up! - End #dealornodeal #show #fyp #deal
39 False Genius, billionaire, playboy, philanthropist... and a great dancer🕺#downey #rdj #robertdowneyjr #ironman #tonystark #unrealdowneyjr #unrealrobertdowneyjr
40 False Celebre as suas vitórias, amiga! 😍 Fazer 1% todos os dias vai te levar a lugares que você nem imagina.
Eu treino com a @Queima Diária 🔥 desde novembro de 2022 e fico muito feliz com esses resultados. Quem vem nessa comigo? Clica no link da bio ou nos stories e experimente por 30 dias!
41 False اكتب شيء تؤجر عليه ✨🤍 #fyp #قران #عبدالرحمن_مسعد
42 False I ❤️ Michael Jordan 🏀 #mercuri_88 #funny #littlebrother #tiktok #mom #CapCut #basketball #nba #jordan
43 False Estavam com saudade? Nao me deixa sem graça nao caraaaa kkkkkk
44 False يعني ارسمها علشان افرحها ويحصل معايا كدة 🤦‍♂️ #علي_الراوي
45 False Ролик уже на канале💋
46 False What k-drama do you think this is? #kdrama #드라마 #seoul #theglory
47 False cat #cat #catsoftiktok #fun #foryou #fyp #viral #funny #😂😂😂 #🤣🤣🤣
48 False #korea #seoul #socialexperiment #fyp
49 False 
50 False #fyp #foryou #طيران
51 False الماء والنار… 🥀💔 #lebrany #viral #foryou #explor
52 False #foryou #recovery #homecare #gloves
53 False Салат из одного ингредиента
54 False #blog #vacuna Hoy tocó hacer vacunar a Salchipapu contra la rabia 🥺🐶
55 False Song name: Jegi Jegi
Watch full song on youtube ( Barbud Music )

#lailakhan #newsong #rejarahish #tiktokpakistan
56 False Putting automatic stickers on manual doors 😂 #rosscreations #prank
57 False Abril 11 parte 7 “Comida Turka”
58 True recipe: @ファビオ飯(イタリア料理人)🇮🇹Fabio #tiktokfood #asmr
59 False Metallic silver epoxy floor🔥 #fyp #epoxyresin #garagegoals #epoxypour #polyasparticfloors #polyaspartic #theepoxypros
60 False Enter the homepage to watch more wonderful videos#movieclips
61 False Respuesta a @RZㅤGOLOSAღ -😅 @Duhsein
62 False Почему «Титаник» до сих пор не подняли со дна океана? #титаник
63 False Funny homework!✨✨#asmr #home #goodthing #foryou
64 False 😂😂@도윤 #주전 #fyp
65 False #parati #fyp #foryou #foryoupage #viral #trump #trump2024 #biden #teamtrump #donaldtrump
66 False Não acreditei no resultado🥺🙌🏼
67 False Atât de vrednică sunt… 😂
M-am făcut de negreală pe obraz🤦🏻‍♀️😂 #soferițadecamion🚛😍 #AGLogistics #oriundeîneuropa #truckgirl
68 False Gatinho Resgatado na chuva 🙏🏻 #jesus #jesuscristo #deus #resgateanimal #resgate #gato #gatinho #cat #viraliza
69 False #pegar un video de
@Yohary Michell Rios #maestra #maestros #universidad #universidad #clases #clasesvirtuales #profesora #profesor #fyp #parati #fouryou #fouyoupage #escuela #escuelatiktok #viral #
70 False So cuteee😂
71 False بوظتلهم الدنيا 😂
72 False #pourtoi #foryou #cpl #bracelet #trend
73 False What’s one way He’s held you as you’ve stepped out in faith? 🌊 #UNITED #fyp #christiantiktok #worship #Oceans
74 False Antwort auf @🍇Wallah Krise🍇 I am going out tonight 💚 #bumpyride
75 False #ليلياناا_نحن_عنوان_الجمال👑😍 #viral #fipシ #foryou #foryoupage #جمال #مكياج #شنيون #عرايس #لف #ميش #اكسبلور #لايك #هشتاك #مشاهير_تيك_توك #تخصيل
76 False Full Episode 293 on YT & Spotify | ShxtsnGigs Podcast
77 False GAME DE RUA COM LARRIKA! #gamederua #viral #fy #fypシ #pravoce #foryoupage
78 False The smallest phone #CapCut #oppo #infinix #Motorola #zte #huawei #vivo #samsung
79 False 
80 False Respect Moment in Football ❤️#footballeur #surprise #fan #respectmoment #respectinfootball #moment #respect #foryou #pourtoi #football
81 False I think I got it in my pants 😧 #learnfromkhaby #comic
82 False Respondendo a @hg_11236 ta aqui a reacao dela ❤️❤️❤️❤️ fofa demais! #fypシ #diadasmaes #surpresa
83 False Наступ на Белгород. Що роблять добровольці там #війна #грайворон #белгород #українськийтікток #андрійковаленко
84 False Have you ever eaten a cappuccino croissant? ☕️🥐
.
.
.
#pastry #pasticceria #italia #croissant
85 False #recetas #facil whatia en tierrra
86 False seyran inşallah gidersin feritinn bı kazimdan tokat yemediği kalmamisti#yalıcapkınıxferit #feritkorhan #seyrankorhan #mertramazandemir #afrasaraçoğlu #seyfer #yalıçapkını #keşfet #fypシ #foryoupage #foryou #viral
87 False 
88 False La puissance de l’eau #pourtoi #meteo #inondation #eau #vigilance
89 False Olha a aranha
#alegriaquecontagia #comedia #viral #rireomelhorremedio #rireprosfortes #rirrenovaalma #gargalhada #fypシ #viralvideo #comediante #trolagem
90 False Se puede ser infiel por chat? VIDEO COMPLETO EN EL LINK DE MI PERFIL ✅ #juliosinfiltros #relaciones #pareja #relacionessanas #infidelidad #infieles #microinfidelidades
91 False Replying to @MC Codër
92 False #kamalaghalan❣
93 False Лобода про детей
94 False Відмічай друга😅#українськийтікток #футболкизпринтами #подарунокхлопцю #подарунокдругу
95 False Find your self worth.#real #loyalty #love #sad #sadquotes #relatable #betryal #foryou #scrolling #mindset #reality #xyzbca #fyp
96 False #київ #вибух #нло #метеорит #ракета #сяйво #спалах #сніданокз1плюс1
97 False اكثر مسلسل حبيتوها برمضان ؟#مهند_رفل #explore
98 False المنتج اللي قالب التيك توك .. أسفنجة التنضيف السحرية 🧐 #حركة_لاكسبلورر #fyp #gym #عبدالرحمن_وابتسام #trendingtiktok #challenge #fypシ
99 True Scotch Egg 😍🥚 #scotchegg #egg #easyrecipe #easyrecipes #caviar #eggs #asmrfood #bacon #cooktok #foodtok #recipesoftiktok #homecook #dinnerideas #eggrecipe #breakfastideas #fancy
Pro tip: Be careful about keywords

For experiments that use keywords, the choices we make will directly shape our results. In the field, you can mitigate your own predisposition and biases by working with domain experts to curate keyword lists.

import matplotlib.pyplot as plt
plt.plot(decisions, ds='steps')
plt.xlabel('Video Number')
plt.ylabel('Watched')
plt.yticks([0, 1], ['False', 'True']);

The figure above shows when during our 100-videos-long session we were recommended a video about food (from keywords). The x-axis is chronological, the 1st video displayed is on the left, and the most recent video is on the right. The y-axis is “yes” or “no,” depending on if the video was related to food.

Results

You can look back to the data/screenshots folder we created to check whether the videos we watched appear to be food-related.

If the feed was indeed increasingly filled with food videos, we would see more lines towards the right of the graph. At least here it does not appear to be the case.

Does it mean that the WSJ investigation was wrong, or that TikTok stopped personalizing content?

The answer is “No,” for several reasons:

  1. We only scrolled through 100 videos, this is likely too few to observe any effects. Try re-running with a higher number!
  2. When studying personalization you should use an account per profile and make sure you’re logged in, rather than relying on a fresh browser. So, instead of closing the login dialog, try actually logging in! You know how to find and click buttons, and this is how you put text in text fields.
  3. When you’re not logged in, you will be presented with content from all over the world, in all languages. If you filtered keywords in just one language, you will miss plenty of target content in other languages.
  4. You should always have a baseline to compare to. In this case, you should probably run two accounts at the same time - one that watches food videos and one that doesn’t. Then you compare the prevalence of food videos between these two.
  5. The WSJ investigation was run on the mobile app rather than on a desktop browser. Perhaps TikTok’s personalization works differently based on device or operating system.

Advanced Usage

Above we highlighted some ideas to make your investigation or study more robust, some are methodological choices, but others are technical.

There are some advanced use-cases and tasks you can perform with browser automation that include

  • Authentication using the browser and storing cookies for later use.
  • Intercept background API calls and combine browser automation with API calls. See selenium-wire as an example.
  • Signing in with one or more email addresses.

We may cover some or all of these topics in subsequent tutorials, but you should feel free to experiment.

Let us know what you’re interested in learning more about!

Citation

To cite this chapter, please use the following BibTex entry:

@incollection{inspect2023browser,
  author    = {Sapiezynski, Piotr and Yin, Leon},
  title     = {Browser Automation},
  booktitle = {Inspect Element: A practitioner's guide to auditing algorithms and hypothesis-driven investigations},
  year      = {2023},
  editor    = {Yin, Leon and Sapiezynski, Piotr},
  note      = {\url{https://inspectelement.org}}
}

Acknowledgements

Thank you to Ruth Talbot and John West for answering questions about their two respective investigations.