mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 10:42:53 +00:00
8aff7f487d
Signed-off-by: Churikova Tetiana <churikova.tm@gmail.com>
11 lines
288 B
Python
11 lines
288 B
Python
import logging
|
|
from selenium.common.exceptions import WebDriverException
|
|
|
|
|
|
def start_web_browser(driver):
|
|
logging.info('Start web browser')
|
|
try:
|
|
driver.start_activity('com.android.chrome', 'com.google.android.apps.chrome.Main')
|
|
except WebDriverException:
|
|
pass
|