Skip to content

Commit

Permalink
Final update: skip test that requires TabProcGrowth val to be 0
Browse files Browse the repository at this point in the history
  • Loading branch information
pmartinez1 committed Aug 27, 2024
1 parent 44fb4f0 commit 1e0dc7b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 19 deletions.
12 changes: 1 addition & 11 deletions examples/python/tests/browsers/test_internet_explorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def test_silent_capability():

driver.quit()

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

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

driver.quit()

@pytest.mark.skipif(sys.platform != "win32", reason="requires Windows")
def test_force_create_proces_api():
options = webdriver.IeOptions()

options.force_create_process_api = True

driver = webdriver.Ie(options=options)
driver.get('https://www.selenium.dev/')

driver.quit()
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ public class ieTest {
}
{{< /tab >}}
{{< tab header="Python" text=true >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130-L131" >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130" >}}
{{< /tab >}}
{{< tab header="CSharp" >}}
using System;
Expand Down Expand Up @@ -447,7 +447,7 @@ public class ieTest {
}
{{< /tab >}}
{{< tab header="Python" text=true >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L142" >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L131" >}}
{{< /tab >}}
{{< tab header="CSharp" >}}
using System;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ public class ieTest {
}
{{< /tab >}}
{{< tab header="Python" text=true >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130-L131" >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130" >}}
{{< /tab >}}
{{< tab header="CSharp" >}}
using System;
Expand Down Expand Up @@ -432,7 +432,7 @@ public class ieTest {
}
{{< /tab >}}
{{< tab header="Python" text=true >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L142" >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L131" >}}
{{< /tab >}}
{{< tab header="CSharp" >}}
using System;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ public class ieTest {
}
{{< /tab >}}
{{< tab header="Python" text=true >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130-L131" >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130" >}}
{{< /tab >}}
{{< tab header="CSharp" >}}
using System;
Expand Down Expand Up @@ -441,7 +441,7 @@ public class ieTest {
}
{{< /tab >}}
{{< tab header="Python" text=true >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L142" >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L131" >}}
{{< /tab >}}
{{< tab header="CSharp" >}}
using System;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ public class ieTest {
}
{{< /tab >}}
{{< tab header="Python" text=true >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130-L131" >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L130" >}}
{{< /tab >}}
{{< tab header="CSharp" >}}
using System;
Expand Down Expand Up @@ -443,7 +443,7 @@ public class ieTest {
}
{{< /tab >}}
{{< tab header="Python" text=true >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L142" >}}
{{< gh-codeblock path="/examples/python/tests/browsers/test_internet_explorer.py#L131" >}}
{{< /tab >}}
{{< tab header="CSharp" >}}
using System;
Expand Down

0 comments on commit 1e0dc7b

Please sign in to comment.