In my application, I use google login and i need to write UI tests
When I click on login button - on top of the application opens a web view. The problem is that neither in Android nor in Ios I can not get to css elements. In Safari and Chrome I see the web view and I know what classes are called and see their id.
How can i get access to enter user email and password?
(Xamarin test Recorder does not respond to actions in the Google SignIn view , only in my Veiws responds)
app.Repl() - give nexts results;
app.Query(c=>c.WebView());
Query for WebView() gave 0 results.
pp.Query(c=>c.Css( "" ))
Query for Css("") gave 0 results.
app.Query( c=>c.WebView().Css( ""))
Query for WebView().Css("") gave 0 results.
Google Login css