|
29 | 29 | # -- General configuration ----------------------------------------------------- |
30 | 30 |
|
31 | 31 | # If your documentation needs a minimal Sphinx version, state it here. |
32 | | -#needs_sphinx = '1.0' |
| 32 | +# needs_sphinx = '1.0' |
33 | 33 |
|
34 | 34 | # Add any Sphinx extension module names here, as strings. They can be extensions |
35 | 35 | # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. |
36 | | -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.autosummary', 'sphinx.ext.doctest', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.imgmath', 'sphinx.ext.viewcode'] |
| 36 | +extensions = [ |
| 37 | + "sphinx.ext.autodoc", |
| 38 | + "sphinx.ext.autosummary", |
| 39 | + "sphinx.ext.doctest", |
| 40 | + "sphinx.ext.todo", |
| 41 | + "sphinx.ext.coverage", |
| 42 | + "sphinx.ext.imgmath", |
| 43 | + "sphinx.ext.viewcode", |
| 44 | +] |
37 | 45 |
|
38 | 46 | # Add any paths that contain templates here, relative to this directory. |
39 | | -templates_path = ['_templates'] |
| 47 | +templates_path = ["_templates"] |
40 | 48 |
|
41 | 49 | # The suffix of source filenames. |
42 | | -source_suffix = '.rst' |
| 50 | +source_suffix = ".rst" |
43 | 51 |
|
44 | 52 | # The encoding of source files. |
45 | | -#source_encoding = 'utf-8-sig' |
| 53 | +# source_encoding = 'utf-8-sig' |
46 | 54 |
|
47 | 55 | # The master toctree document. |
48 | | -master_doc = 'index' |
| 56 | +master_doc = "index" |
49 | 57 |
|
50 | 58 | # General information about the project. |
51 | | -project = 'Selenium' |
52 | | -copyright = '2009-2025 Software Freedom Conservancy' |
| 59 | +project = "Selenium" |
| 60 | +copyright = "2009-2025 Software Freedom Conservancy" |
53 | 61 |
|
54 | 62 | # The version info for the project you're documenting, acts as replacement for |
55 | 63 | # |version| and |release|, also used in various other places throughout the |
56 | 64 | # built documents. |
57 | 65 | # |
58 | 66 | # The short X.Y version. |
59 | | -version = '4.33' |
| 67 | +version = "4.33" |
60 | 68 | # The full version, including alpha/beta/rc tags. |
61 | | -release = '4.33.0.202505022255' |
| 69 | +release = "4.33.0.202505022255" |
62 | 70 |
|
63 | 71 | # The language for content autogenerated by Sphinx. Refer to documentation |
64 | 72 | # for a list of supported languages. |
65 | | -#language = None |
| 73 | +# language = None |
66 | 74 |
|
67 | 75 | # There are two options for replacing |today|: either, you set today to some |
68 | 76 | # non-false value, then it is used: |
69 | | -#today = '' |
| 77 | +# today = '' |
70 | 78 | # Else, today_fmt is used as the format for a strftime call. |
71 | | -#today_fmt = '%B %d, %Y' |
| 79 | +# today_fmt = '%B %d, %Y' |
72 | 80 |
|
73 | 81 | # List of patterns, relative to source directory, that match files and |
74 | 82 | # directories to ignore when looking for source files. |
75 | 83 | exclude_patterns = [] |
76 | 84 |
|
77 | 85 | # The reST default role (used for this markup: `text`) to use for all documents. |
78 | | -#default_role = None |
| 86 | +# default_role = None |
79 | 87 |
|
80 | 88 | # If true, '()' will be appended to :func: etc. cross-reference text. |
81 | | -#add_function_parentheses = True |
| 89 | +# add_function_parentheses = True |
82 | 90 |
|
83 | 91 | # If true, the current module name will be prepended to all description |
84 | 92 | # unit titles (such as .. function::). |
85 | | -#add_module_names = True |
| 93 | +# add_module_names = True |
86 | 94 |
|
87 | 95 | # If true, sectionauthor and moduleauthor directives will be shown in the |
88 | 96 | # output. They are ignored by default. |
89 | | -#show_authors = False |
| 97 | +# show_authors = False |
90 | 98 |
|
91 | 99 | # The name of the Pygments (syntax highlighting) style to use. |
92 | | -pygments_style = 'sphinx' |
| 100 | +pygments_style = "sphinx" |
93 | 101 |
|
94 | 102 | # A list of ignored prefixes for module index sorting. |
95 | | -#modindex_common_prefix = [] |
| 103 | +# modindex_common_prefix = [] |
96 | 104 |
|
97 | 105 |
|
98 | 106 | # -- Options for HTML output --------------------------------------------------- |
99 | 107 |
|
100 | 108 | # The theme to use for HTML and HTML Help pages |
101 | | -html_theme = 'sphinx_material' |
| 109 | +html_theme = "sphinx_material" |
102 | 110 |
|
103 | 111 | # Theme options are theme-specific and customize the look and feel of a theme |
104 | 112 | # further. For a list of options available for each theme, see the |
105 | 113 | # documentation. |
106 | | -#html_theme_options = {} |
| 114 | +# html_theme_options = {} |
107 | 115 |
|
108 | 116 | # Add any paths that contain custom themes here, relative to this directory. |
109 | | -#html_theme_path = [] |
| 117 | +# html_theme_path = [] |
110 | 118 |
|
111 | 119 | # The name for this set of Sphinx documents. If None, it defaults to |
112 | 120 | # "<project> v<release> documentation". |
113 | | -#html_title = None |
| 121 | +# html_title = None |
114 | 122 |
|
115 | 123 | # A shorter title for the navigation bar. Default is the same as html_title. |
116 | | -#html_short_title = None |
| 124 | +# html_short_title = None |
117 | 125 |
|
118 | 126 | # The name of an image file (relative to this directory) to place at the top |
119 | 127 | # of the sidebar. |
120 | | -#html_logo = '' |
| 128 | +# html_logo = '' |
121 | 129 |
|
122 | 130 | # The name of an image file (within the static path) to use as favicon of the |
123 | 131 | # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 |
124 | 132 | # pixels large. |
125 | | -#html_favicon = None |
| 133 | +# html_favicon = None |
126 | 134 |
|
127 | 135 | # Add any paths that contain custom static files (such as style sheets) here, |
128 | 136 | # relative to this directory. They are copied after the builtin static files, |
|
131 | 139 |
|
132 | 140 | # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, |
133 | 141 | # using the given strftime format. |
134 | | -#html_last_updated_fmt = '%b %d, %Y' |
| 142 | +# html_last_updated_fmt = '%b %d, %Y' |
135 | 143 |
|
136 | 144 | # If true, SmartyPants will be used to convert quotes and dashes to |
137 | 145 | # typographically correct entities. |
138 | | -#html_use_smartypants = True |
| 146 | +# html_use_smartypants = True |
139 | 147 |
|
140 | 148 | # Custom sidebar templates, maps document names to template names. |
141 | | -#html_sidebars = {} |
| 149 | +# html_sidebars = {} |
142 | 150 |
|
143 | 151 | # Additional templates that should be rendered to pages, maps page names to |
144 | 152 | # template names. |
145 | | -#html_additional_pages = {} |
| 153 | +# html_additional_pages = {} |
146 | 154 |
|
147 | 155 | # If false, no module index is generated. |
148 | 156 | html_domain_indices = True |
|
160 | 168 | html_show_sphinx = False |
161 | 169 |
|
162 | 170 | # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. |
163 | | -#html_show_copyright = True |
| 171 | +# html_show_copyright = True |
164 | 172 |
|
165 | 173 | # If true, an OpenSearch description file will be output, and all pages will |
166 | 174 | # contain a <link> tag referring to it. The value of this option must be the |
167 | 175 | # base URL from which the finished HTML is served. |
168 | | -#html_use_opensearch = '' |
| 176 | +# html_use_opensearch = '' |
169 | 177 |
|
170 | 178 | # This is the file name suffix for HTML files (e.g. ".xhtml"). |
171 | | -#html_file_suffix = None |
| 179 | +# html_file_suffix = None |
172 | 180 |
|
173 | 181 | # Output file base name for HTML help builder. |
174 | | -htmlhelp_basename = 'Seleniumdoc' |
| 182 | +htmlhelp_basename = "Seleniumdoc" |
175 | 183 |
|
176 | 184 |
|
177 | 185 | # -- Options for LaTeX output -------------------------------------------------- |
178 | 186 |
|
179 | 187 | # The paper size ('letter' or 'a4'). |
180 | | -#latex_paper_size = 'letter' |
| 188 | +# latex_paper_size = 'letter' |
181 | 189 |
|
182 | 190 | # The font size ('10pt', '11pt' or '12pt'). |
183 | | -#latex_font_size = '10pt' |
| 191 | +# latex_font_size = '10pt' |
184 | 192 |
|
185 | 193 | # Grouping the document tree into LaTeX files. List of tuples |
186 | 194 | # (source start file, target name, title, author, documentclass [howto/manual]). |
187 | 195 | latex_documents = [ |
188 | | - ('index', 'Selenium.tex', 'Selenium Documentation', |
189 | | - 'plightbo, simon.m.stewart, hbchai, jrhuggins, et al.', 'manual'), |
| 196 | + ( |
| 197 | + "index", |
| 198 | + "Selenium.tex", |
| 199 | + "Selenium Documentation", |
| 200 | + "plightbo, simon.m.stewart, hbchai, jrhuggins, et al.", |
| 201 | + "manual", |
| 202 | + ), |
190 | 203 | ] |
191 | 204 |
|
192 | 205 | # The name of an image file (relative to this directory) to place at the top of |
193 | 206 | # the title page. |
194 | | -#latex_logo = None |
| 207 | +# latex_logo = None |
195 | 208 |
|
196 | 209 | # For "manual" documents, if this is true, then toplevel headings are parts, |
197 | 210 | # not chapters. |
198 | | -#latex_use_parts = False |
| 211 | +# latex_use_parts = False |
199 | 212 |
|
200 | 213 | # If true, show page references after internal links. |
201 | | -#latex_show_pagerefs = False |
| 214 | +# latex_show_pagerefs = False |
202 | 215 |
|
203 | 216 | # If true, show URL addresses after external links. |
204 | | -#latex_show_urls = False |
| 217 | +# latex_show_urls = False |
205 | 218 |
|
206 | 219 | # Additional stuff for the LaTeX preamble. |
207 | | -#latex_preamble = '' |
| 220 | +# latex_preamble = '' |
208 | 221 |
|
209 | 222 | # Documents to append as an appendix to all manuals. |
210 | | -#latex_appendices = [] |
| 223 | +# latex_appendices = [] |
211 | 224 |
|
212 | 225 | # If false, no module index is generated. |
213 | | -#latex_domain_indices = True |
| 226 | +# latex_domain_indices = True |
214 | 227 |
|
215 | 228 |
|
216 | 229 | # -- Options for manual page output -------------------------------------------- |
217 | 230 |
|
218 | 231 | # One entry per manual page. List of tuples |
219 | 232 | # (source start file, name, description, authors, manual section). |
220 | 233 | man_pages = [ |
221 | | - ('index', 'selenium', 'Selenium Documentation', |
222 | | - ['plightbo, simon.m.stewart, hbchai, jrhuggins, et al.'], 1) |
| 234 | + ("index", "selenium", "Selenium Documentation", ["plightbo, simon.m.stewart, hbchai, jrhuggins, et al."], 1) |
223 | 235 | ] |
224 | 236 |
|
225 | 237 |
|
226 | 238 | # -- Options for Epub output --------------------------------------------------- |
227 | 239 |
|
228 | 240 | # Bibliographic Dublin Core info. |
229 | | -epub_title = 'Selenium' |
230 | | -epub_author = 'The Selenium Project' |
231 | | -epub_publisher = 'The Selenium Project' |
232 | | -epub_copyright = '2009-2024 Software Freedom Conservancy' |
| 241 | +epub_title = "Selenium" |
| 242 | +epub_author = "The Selenium Project" |
| 243 | +epub_publisher = "The Selenium Project" |
| 244 | +epub_copyright = "2009-2024 Software Freedom Conservancy" |
233 | 245 |
|
234 | 246 | # The language of the text. It defaults to the language option |
235 | 247 | # or en if the language is not set. |
236 | | -#epub_language = '' |
| 248 | +# epub_language = '' |
237 | 249 |
|
238 | 250 | # The scheme of the identifier. Typical schemes are ISBN or URL. |
239 | | -#epub_scheme = '' |
| 251 | +# epub_scheme = '' |
240 | 252 |
|
241 | 253 | # The unique identifier of the text. This can be a ISBN number |
242 | 254 | # or the project homepage. |
243 | | -#epub_identifier = '' |
| 255 | +# epub_identifier = '' |
244 | 256 |
|
245 | 257 | # A unique identification for the text. |
246 | | -#epub_uid = '' |
| 258 | +# epub_uid = '' |
247 | 259 |
|
248 | 260 | # HTML files that should be inserted before the pages created by sphinx. |
249 | 261 | # The format is a list of tuples containing the path and title. |
250 | | -#epub_pre_files = [] |
| 262 | +# epub_pre_files = [] |
251 | 263 |
|
252 | 264 | # HTML files that should be inserted after the pages created by sphinx. |
253 | 265 | # The format is a list of tuples containing the path and title. |
254 | | -#epub_post_files = [] |
| 266 | +# epub_post_files = [] |
255 | 267 |
|
256 | 268 | # A list of files that should not be packed into the epub file. |
257 | | -#epub_exclude_files = [] |
| 269 | +# epub_exclude_files = [] |
258 | 270 |
|
259 | 271 | # The depth of the table of contents in toc.ncx. |
260 | | -#epub_tocdepth = 3 |
| 272 | +# epub_tocdepth = 3 |
261 | 273 |
|
262 | 274 | # Allow duplicate toc entries. |
263 | | -#epub_tocdup = True |
| 275 | +# epub_tocdup = True |
264 | 276 |
|
265 | 277 |
|
266 | 278 | # Example configuration for intersphinx: refer to the Python standard library. |
267 | | -intersphinx_mapping = {'http://docs.python.org/': None} |
| 279 | +intersphinx_mapping = {"http://docs.python.org/": None} |
268 | 280 |
|
269 | 281 | # 'members' includes anything that has a docstring, 'undoc-members' includes |
270 | 282 | # functions without docstrings. |
271 | | -autodoc_default_flags = ['members', 'undoc-members'] |
| 283 | +autodoc_default_flags = ["members", "undoc-members"] |
272 | 284 |
|
273 | 285 | # configuration for keeping the methods that can be invoked on said classes |
274 | 286 | autodoc_default_options = { |
275 | | - 'members': True, |
276 | | - 'member-order': 'bysource', |
277 | | - 'undoc-members': True, |
278 | | - 'inherited-members': True, |
| 287 | + "members": True, |
| 288 | + "member-order": "bysource", |
| 289 | + "undoc-members": True, |
| 290 | + "inherited-members": True, |
279 | 291 | } |
280 | 292 |
|
281 | 293 | # Include __init__ comments |
|
0 commit comments