File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
dotnet/src/webdriver/BiDi/BrowsingContext Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 1818// </copyright>
1919
2020using System ;
21+ using System . Text . Json . Serialization ;
2122using System . Threading . Tasks ;
2223
2324namespace OpenQA . Selenium . BiDi . BrowsingContext ;
@@ -44,16 +45,22 @@ internal BrowsingContext(BiDi bidi, string id)
4445
4546 internal string Id { get ; }
4647
48+ [ JsonIgnore ]
4749 public BiDi BiDi { get ; }
4850
51+ [ JsonIgnore ]
4952 public BrowsingContextLogModule Log => _logModule . Value ;
5053
54+ [ JsonIgnore ]
5155 public BrowsingContextNetworkModule Network => _networkModule . Value ;
5256
57+ [ JsonIgnore ]
5358 public BrowsingContextScriptModule Script => _scriptModule . Value ;
5459
60+ [ JsonIgnore ]
5561 public BrowsingContextStorageModule Storage => _storageModule . Value ;
5662
63+ [ JsonIgnore ]
5764 public BrowsingContextInputModule Input => _inputModule . Value ;
5865
5966 public Task < NavigateResult > NavigateAsync ( string url , NavigateOptions ? options = null )
You can’t perform that action at this time.
0 commit comments