Skip to content

Commit 1e0dc7b

Browse files
committed
Final update: skip test that requires TabProcGrowth val to be 0
1 parent 44fb4f0 commit 1e0dc7b

File tree

5 files changed

+9
-19
lines changed

5 files changed

+9
-19
lines changed

examples/python/tests/browsers/test_internet_explorer.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def test_silent_capability():
123123

124124
driver.quit()
125125

126-
@pytest.mark.skipif(sys.platform != "win32", reason="requires Windows")
126+
@pytest.mark.skip(reason="TabProcGrowth is required to be set to 0 value")
127127
def test_command_line_options():
128128
options = webdriver.IeOptions()
129129

@@ -135,13 +135,3 @@ def test_command_line_options():
135135

136136
driver.quit()
137137

138-
@pytest.mark.skipif(sys.platform != "win32", reason="requires Windows")
139-
def test_force_create_proces_api():
140-
options = webdriver.IeOptions()
141-
142-
options.force_create_process_api = True
143-
144-
driver = webdriver.Ie(options=options)
145-
driver.get('https://www.selenium.dev/')
146-
147-
driver.quit()

website_and_docs/content/documentation/webdriver/browsers/internet_explorer.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ public class ieTest {
361361
}
362362
{{< /tab >}}
363363
{{< tab header="Python" text=true >}}
364-
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130-L131" >}}
364+
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130" >}}
365365
{{< /tab >}}
366366
{{< tab header="CSharp" >}}
367367
using System;
@@ -447,7 +447,7 @@ public class ieTest {
447447
}
448448
{{< /tab >}}
449449
{{< tab header="Python" text=true >}}
450-
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L142" >}}
450+
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L131" >}}
451451
{{< /tab >}}
452452
{{< tab header="CSharp" >}}
453453
using System;

website_and_docs/content/documentation/webdriver/browsers/internet_explorer.ja.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ public class ieTest {
348348
}
349349
{{< /tab >}}
350350
{{< tab header="Python" text=true >}}
351-
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130-L131" >}}
351+
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130" >}}
352352
{{< /tab >}}
353353
{{< tab header="CSharp" >}}
354354
using System;
@@ -432,7 +432,7 @@ public class ieTest {
432432
}
433433
{{< /tab >}}
434434
{{< tab header="Python" text=true >}}
435-
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L142" >}}
435+
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L131" >}}
436436
{{< /tab >}}
437437
{{< tab header="CSharp" >}}
438438
using System;

website_and_docs/content/documentation/webdriver/browsers/internet_explorer.pt-br.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ public class ieTest {
356356
}
357357
{{< /tab >}}
358358
{{< tab header="Python" text=true >}}
359-
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130-L131" >}}
359+
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130" >}}
360360
{{< /tab >}}
361361
{{< tab header="CSharp" >}}
362362
using System;
@@ -441,7 +441,7 @@ public class ieTest {
441441
}
442442
{{< /tab >}}
443443
{{< tab header="Python" text=true >}}
444-
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L142" >}}
444+
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L131" >}}
445445
{{< /tab >}}
446446
{{< tab header="CSharp" >}}
447447
using System;

website_and_docs/content/documentation/webdriver/browsers/internet_explorer.zh-cn.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ public class ieTest {
358358
}
359359
{{< /tab >}}
360360
{{< tab header="Python" text=true >}}
361-
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130-L131" >}}
361+
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130" >}}
362362
{{< /tab >}}
363363
{{< tab header="CSharp" >}}
364364
using System;
@@ -443,7 +443,7 @@ public class ieTest {
443443
}
444444
{{< /tab >}}
445445
{{< tab header="Python" text=true >}}
446-
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L142" >}}
446+
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L131" >}}
447447
{{< /tab >}}
448448
{{< tab header="CSharp" >}}
449449
using System;

0 commit comments

Comments
 (0)