0

I need to UI automate a third party mobile app(hybrid app) using xamarin , in which first page is loaded from a website. When i give tree command in xamarin repl command prompt, it returns system web view element like below ,

[SystemWebView] id : "NoResourceEntry-100"
[dom]
[dom]
[dom]

It has two buttons SKIP and NEXT. Is it possible to retrieve the id to use SKIP or NEXT using xamarin repl. Kindly help me with this.

Thanks in advance

tequila slammer
  • 2,821
  • 1
  • 18
  • 25

1 Answers1

0

Yes it is possible but you have to use the DOM or CSS IDs. Something like: app.Tap(e => e.WebView(1).Css("your_css_selector"));

tequila slammer
  • 2,821
  • 1
  • 18
  • 25