cookie class : Delete() method
Description
Delete a cookie.
Syntax
instance.Delete()
Arguments
None.
Return value
None.
Sample code
1: | browser br; |
2: | cookie coo = br.GetCookie("Example"); |
3: | coo.Delete(); |
Notes
Delete the cookie that matches the name, domain, and path.
Links for reference
None.