Tags: selenium misc 

Rating: 4.0

There's a flag somewhere, can you find it? http://flag-title.q.2022.volgactf.ru:3000/
We see a web page where the title changes, let's write a simple python script and move on to the next task, a flag appears in flag.txt

```
from selenium import webdriver
import time

driver = webdriver.Chrome()
url = 'http://flag-title.q.2022.volgactf.ru:3000/'
driver.get(url)
f = open('flag.txt', 'w')
for i in range(300):
time.sleep(1)
f.write(driver.title)
driver.close()
print("<programm stop>")
```