Merge pull request #453 from motin/avoid-synchronized-visits-in-demo

Avoid using "index='**'" in demo.py since it is a bit confusing
This commit is contained in:
Steven Englehardt 2019-08-13 16:52:58 -07:00 коммит произвёл GitHub
Родитель f225167b2a 560c6579a1
Коммит 2c2c69505c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -43,8 +43,8 @@ for site in sites:
# Start by visiting the page
command_sequence.get(sleep=3, timeout=60)
# index='**' synchronizes visits between the three browsers
manager.execute_command_sequence(command_sequence, index='**')
# Run commands across the three browsers (simple parallelization)
manager.execute_command_sequence(command_sequence)
# Shuts down the browsers and waits for the data to finish logging
manager.close()