How to open a web link in LG webOS browser without relaunching the existing app

We are trying to launch the webOs browser using the launch method, But we loosing the control of our current app & have to relaunch the app.

Is there any way to open a weblink without relaunching the app ?

Sharing code for ref

webOS.service.request( 'luna://com.webos.applicationManager', {
method: "launch",
parameters: {
id: "com.webos.app.browser",
params: {
target: 'www.example.com'
},
},
onSuccess: (res) => {
console.log("Browser open success. ", res);
},
onFailure: (res) => {
console.log("Browser open fail. ", res);
},
});```

When you run another app, the app is suspended and hidden. It is normal operation. For more information, please refer to App Lifecycle. Thank you.