Main function to run the impersonation examples Demonstrates different browser impersonation scenarios: 1. Firefox with custom header order 2. Chrome on Android with OS specification
()
| 59 | |
| 60 | |
| 61 | async def main(): |
| 62 | """Main function to run the impersonation examples |
| 63 | |
| 64 | Demonstrates different browser impersonation scenarios: |
| 65 | 1. Firefox with custom header order |
| 66 | 2. Chrome on Android with OS specification |
| 67 | """ |
| 68 | # First test with Firefox |
| 69 | client = await request_firefox() |
| 70 | |
| 71 | # Then update and test with Chrome on Android |
| 72 | await request_chrome_android(client) |
| 73 | |
| 74 | |
| 75 | if __name__ == "__main__": |
no test coverage detected