I have a WKWebView that is on the google home page (google.com) and I will like to programmatically select and type 'Apple' inside the google search field and press the 'Google Search' button to look for websites that match 'Apple'.
I was only able to figure out how to interact with simple elements such as the background color (with this https://www.capitalone.com/tech/software-engineering/javascript-manipulation-on-ios-using-webkit). But unfortunately all of the other websites I find are not helpful. How can I do this?
Related
I am using Google Slides for my teaching and embedded the slide that was publish to the web in my Google Site that I created for my teaching.
If I insert hyperlinks in my google slide (that is embedded my site) for the student to click on see more about the subject (normally another google slide) the hyperlink open a new tab in the browser. If the student want to go back they must click on the first tab instead of just click "back".
If there is multiple hyper links in the google slide a large number of tabs can be open and this brings unnecessary confusion for the students to find the correct tab.
Is there way overcome this and let the hyperlinks stay in the google site tab and not open new tabs.
when showing google sheet in iframe, is there a possible way to disable or hide "get link to this cell" in google sheets context menu (Right Click menu).
This is not possible. iframe's display the content as-is and for security reasons you are not allowed to modify it.
If you are interested in creating a customised view of your Sheet, I suggest you consider using the Sheets API and create your own view using web technologies.
I'm using google maps SDK in swift 4, everything is perfect, but..
I need to allow the user to tap on Google control button as the image below:
Google control button image
My question is how to drop the a marker from my app map to google maps app with specific coordinates.
Thanks.
As far as I know you cannot override that button.
You're better off using a different button that opens a url. as per https://developer.apple.com/documentation/uikit/uiapplication/1648685-open
You can then include the marker coordinates as a query in your url, which will add a marker to the map.
eg. https://www.google.com/maps/search/?api=1&query=-33.830114,151.219235
this is as per: https://developers.google.com/maps/documentation/urls/guide
In iOS application, tab bar id added containing more than 10tabs and screens.
Note: Tab bar is just example.
I want to implement search menu(feature), so that user can search and quickly navigate to particular screen. There are number of screens and to go to particular screen user has to taps number of time. So here I have to provide search option so that user can search and quickly navigate to particular screen. I want to minimize number of taps and provide quick access to all features in the application.
For e.g) When user enter text 'edit profile', app should show options relevant to entered text like "Edit Profile". When user tap on it, it should navigate to Edit profile screen.
What should be approach to implement such kind of functionality?
Do I need to define all features somewhere?
How to manage navigation?
How to provide suggestions as per entered search text?
I want to add a Share bar button item to my top Navigation Bar that works like the one in Safari (send a link via SMS Message, copy a link, etc), are developers allowed access to that, or is it something where I have to create my own?
Found out you can do this with UIActivityViewController!
Let me know if you have any questions on this-