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
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ This plugin uses mitmproxy
5
5
6
6
## Prerequisite
7
7
8
-
1. Appium version 2.0
8
+
1. Appium version 3.0
9
9
2. Intercepting API requests from android requires CA certificate to be installed on the device. Follow the instructions in [How to install CA certificate on android](./docs/certificate-installation.md) section and install the CA certificate.
@@ -76,7 +76,7 @@ Add a new mock specification for intercepting and updating the request. The comm
76
76
]
77
77
})
78
78
}
79
-
}]);
79
+
});
80
80
```
81
81
82
82
`authorizationMock` will be executed for all api calls made to `reqres.in` domain and `userListGetMock` will be applied for `https://www.reqres.in/api/users` with `GET` http method.
@@ -87,23 +87,23 @@ Given a mockId return during addMock command, will remove the mock configuration
// authorizationMock will not be active after this point and the test will proceed with normal flow
109
109
```
@@ -123,45 +123,45 @@ Start listening for all network traffic (API calls) made by the device during a
123
123
It also supports filtering the request based on the url. `include` will only listents for requests that macthes the given url pattern and `exclude` will listen for all api's that doesn't match the url pattern.
0 commit comments