How to navigate to Url using Coded C#

i am useing this code to open browser but how can i use advance method to naviage to diffrent url after that

var target = new TargetAppModel();
target.WithUrl(“https://www.yahoo.com/”, “”, NBrowserType.Chrome);
var tabOptions = new TargetAppOptions();
tabOptions.OpenMode = NAppOpenMode.IfNotOpen;

                var webScreen = uiAutomation.Open(target, tabOptions);

@jimi_raj

Welcome to the community

webScreen.GoToUrl("<Your URl here>");

cheers

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.