In Bot UI Click on Button Link => Open Tabs in Browser

  • Автор темы Автор темы valteau
  • Дата начала Дата начала

valteau

Client
Регистрация
06.07.2018
Сообщения
133
Реакции
3
Баллы
18
In Bot UI, I would like to open a browser window by clicking on a button (with a link) but the interface opens a new window with the zennoposter logo but not a browser window... How to do this?

What i use :
Код:
Развернуть Свернуть Копировать
<a target="_blank" rel="noopener noreferrer" href="https://google.com/">Link</a>

What i try to use :

Код:
Развернуть Свернуть Копировать
NavigateWebURL("http://www.google.com", "default")

Код:
Развернуть Свернуть Копировать
Dim url As String = “http://www.example.com“
Process.Start(url)

Код:
Развернуть Свернуть Копировать
private void pictureBox1_Click(object sender, EventArgs e)
    {
        Process.Start("http://www.google.com");
    }
 
I'm afraid BotUI does not allow to open browser.
Browser instance can be run only after starting project execution.
 

Кто просматривает тему: (Всего: 0, Пользователи: 0, Гости: 0)