mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
a22d13fd80
Signed-off-by: yevh-berdnyk <ie.berdnyk@gmail.com>
11 lines
283 B
Python
11 lines
283 B
Python
import logging
|
|
from selenium.common.exceptions import WebDriverException
|
|
|
|
|
|
def start_web_browser(driver):
|
|
logging.info('Start web browser')
|
|
try:
|
|
driver.start_activity('org.chromium.webview_shell', 'WebViewBrowserActivity')
|
|
except WebDriverException:
|
|
pass
|