Skip to content

Commit 54b3b23

Browse files
JohnChen0AutomatedTester
authored andcommitted
Fix HTTP Method for Create Window
The HTTP Method for Create Window command was specified as POST at https://w3c.github.io/webdriver/#endpoints, but as GET at https://w3c.github.io/webdriver/#create-window. Since this command takes a parameter, it needs to use POST method.
1 parent de3aadf commit 54b3b23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3245,7 +3245,7 @@ <h3><dfn>Create Window</dfn></h3>
32453245
<th>URI Template</th>
32463246
</tr>
32473247
<tr>
3248-
<td>GET</td>
3248+
<td>POST</td>
32493249
<td>/session/{<var>session id</var>}/window/new</td>
32503250
</tr>
32513251
</table>

0 commit comments

Comments
 (0)