![yii](https://habrastorage.org/r/w120/webt/5a/6c/2b/5a6c2bb5533ac294317863.png)
Yii
1
Вклад в тег
import time
from selenium import webdriver
import selenium.webdriver.chrome.service as service
service = service.Service('/path/to/chromedriver')
service.start()
capabilities = {'chrome.binary': '/path/to/custom/chrome'}
driver = webdriver.Remote(service.service_url, capabilities)
driver.get('http://www.google.com/xhtml');
driver.quit()