File size: 242 Bytes
9f47881
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from seleniumbase import SB
from time import sleep

with SB(uc = True, maximize = True, headless = True, chromium_arg = '--mute-audio') as sb:

    sb.open('https://app.rundiffusion.com/login')
        
    sleep(1)

    print(sb.get_title())