You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The full example can be found [here](https://github.com/kameleo-io/local-api-examples/blob/master/dotnet-csharp/connect_with_playwright_to_firefox/Program.cs).
180
180
181
+
# Automate mobile profiles
182
+
Kameleo can emulate mobile devices in the custom built Chromium.
// This allows you to click on elements using the cursor when emulating a touch screen in the brower.
208
+
// If you leave this out, your script may time out after clicks and fail.
209
+
newPreference("disableTouchEmulation", true),
210
+
}
211
+
});
212
+
213
+
// At this point you can automate the browser with your favorite framework
214
+
```
215
+
The full example can be found [here](https://github.com/kameleo-io/local-api-examples/blob/master/dotnet-csharp/automate_mobile_profiles_on_desktop/Program.cs).
216
+
181
217
# Example codes
182
218
[Several examples](https://github.com/kameleo-io/local-api-examples) have been prepared in a different repository to showcase the most interesting features. Feel free to create a pull request to add new example codes.
183
219
@@ -188,10 +224,14 @@ The full example can be found [here](https://github.com/kameleo-io/local-api-exa
188
224
- Using Selenium with Local API
189
225
- Using Playwright with Kameleo
190
226
- Using Puppeteer with Kameleo
227
+
- How to emulate mobile devices
191
228
- Adding an HTTP, SOCKS or SSH proxy to profile
192
229
- Saving/Loading a browsing session to/from a .kameleo file
193
230
- Modify and Delete browser cookies
194
231
- Start profile with extra WebDriver capabilities
232
+
- How to duplicate virtual browser profiles
233
+
- Test proxies
234
+
- Refresh the browser of the emulated profiles
195
235
196
236
> Note: _If you are interested in more information about Kameleo, or have encountered an issue with using it, please check out our [Help Center](https://help.kameleo.io/)._
0 commit comments