# OPENWEBPAGE

#### Syntax <a href="#syntax.35" id="syntax.35"></a>

**OPENWEBPAGE**(*url; mode*)

* *url* - the url of the web page, which should be opened - ***Value type**: text*
* *mode* - defines if the url should be opened in the same or a new browser tab - ***Value type**: constant (optional, default value:* <mark style="color:red;">newtab</mark>*)*\
  Possible values are
  1. <mark style="color:red;">self</mark> - the url is opened in the current browser tab
  2. <mark style="color:red;">newtab</mark> - the url is opened in a new browser tab

#### Example

All these calls open the nedyx home page in a new browser tab:

* <mark style="color:blue;">**OPENWEBPAGE**</mark>(“<https://nedyx.com”>)
* <mark style="color:blue;">**OPENWEBPAGE**</mark>(“<http://nedyx.com”>)
* <mark style="color:blue;">**OPENWEBPAGE**</mark>(“nedyx.com”)

<figure><img src="https://1085786630-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FWv5M2BoEVu0kDIV5EPs4%2Fuploads%2Fgit-blob-e6d790f81e4a08f9d43edd751733efd5bf1e1e9a%2Fgrafik.png?alt=media" alt=""><figcaption></figcaption></figure>

The call opens the nedyx home page in the current browser tab:

* <mark style="color:blue;">**OPENWEBPAGE**</mark>(“nedyx.com”; <mark style="color:red;">self</mark>)
