Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add WebDriver module #780

Merged
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
71fb954
Create templete of WebDriver module
ShaharM7 Feb 13, 2023
d5884fe
Remove driver options and set vnc server port
ShaharM7 Feb 13, 2023
a376b05
Add WebDriver xunit test project and add it to solution
ShaharM7 Feb 13, 2023
390d39d
Add basic test
ShaharM7 Feb 13, 2023
dd1c5fe
Add base method to change configuration running
ShaharM7 Feb 14, 2023
ac46738
Add options to get the browser type
ShaharM7 Feb 19, 2023
0ed06e1
Add method desception
ShaharM7 Feb 19, 2023
1247eca
Change the default resolution
ShaharM7 Feb 19, 2023
1f0667e
Add method to get the webdriver uri
ShaharM7 Feb 19, 2023
1609c73
clean descreption
ShaharM7 Feb 19, 2023
52896db
Wait ForResponseMessageMatching
ShaharM7 Feb 22, 2023
14e2f8b
Add wait for selenium grid be in status ready
ShaharM7 Feb 23, 2023
b125ded
Cleanning project
ShaharM7 Feb 25, 2023
1fab2c6
git fetch all new data
ShaharM7 Feb 27, 2023
a20a1a0
Add WaitStrategy for response message contain isReday With status true
ShaharM7 Mar 1, 2023
05475b2
Set browser type struct and remove it from configuration
ShaharM7 Mar 2, 2023
d72bde6
Merge branch 'develop' of github.com:testcontainers/testcontainers-do…
ShaharM7 Mar 2, 2023
8ac30ac
Update Testcontainers.sln.DotSettings
HofmeisterAn Mar 3, 2023
8cf0122
Update src/Testcontainers.WebDriver/WebDriverConfiguration.cs
HofmeisterAn Mar 3, 2023
26d09b3
Update tests/Testcontainers.WebDriver.Tests/Testcontainers.WebDriver.…
HofmeisterAn Mar 3, 2023
8c5ac0a
Update tests/Testcontainers.WebDriver.Tests/WebDriverContainerTest.cs
HofmeisterAn Mar 3, 2023
c22e75a
Update Testcontainers.dic
HofmeisterAn Mar 3, 2023
69efe84
Merge branch 'develop' into feature/WebDriverContainer
HofmeisterAn Mar 3, 2023
c753b87
Merge branch 'develop' of github.com:testcontainers/testcontainers-do…
ShaharM7 Mar 3, 2023
0934292
Add webDriverType
ShaharM7 Mar 3, 2023
8b9f536
Make WebDriverType pubic
ShaharM7 Mar 3, 2023
f8aaf6f
Merge branch 'testcontainers:develop' into feature/WebDriverContainer
ShaharM7 Mar 4, 2023
fb777ff
WithVideoRecording()
ShaharM7 Mar 4, 2023
5395d20
Add base test
ShaharM7 Mar 4, 2023
30ab626
Resolve confilct
ShaharM7 Mar 4, 2023
a0e411c
Add container of hello world and find title element
ShaharM7 Mar 4, 2023
f2b10a7
Fixing test - create alias to navigate to the apllciation
ShaharM7 Mar 6, 2023
c2eb96c
little suggestions
ShaharM7 Mar 6, 2023
1be4f8a
Merge branch 'develop' of github.com:testcontainers/testcontainers-do…
ShaharM7 Mar 8, 2023
ffc3f0f
Merge branch 'testcontainers:develop' into feature/WebDriverContainer
ShaharM7 Mar 9, 2023
8b06a53
Set version of selenium test to 4.8.0
ShaharM7 Mar 9, 2023
84f1174
chore: Prepare WebDriverBuilder cleanup
HofmeisterAn Mar 8, 2023
5bc60ec
chore: Update builder docs
HofmeisterAn Mar 8, 2023
7dcc2c5
chore: Prepare test
HofmeisterAn Mar 8, 2023
dcd1a1c
chore: Refactor tests, add export video
HofmeisterAn Mar 8, 2023
485958b
chore: Change WebDriverBrowser ctor modifier to public
HofmeisterAn Mar 9, 2023
9592c1d
chore: Minor clean up
HofmeisterAn Mar 9, 2023
4316aa0
Only edit docs with remark
ShaharM7 Mar 9, 2023
336ecc8
Merge branch 'feature/WebDriverContainer' of github.com:ShaharM7/test…
ShaharM7 Mar 9, 2023
aeded64
Add assert true if file exist
ShaharM7 Mar 9, 2023
3ec0ebf
chore: Throw exception if video recording is not enabled or container…
HofmeisterAn Mar 10, 2023
2f55d02
chore: Add link to the Docker Selenium image docs
HofmeisterAn Mar 10, 2023
8365f3b
chore: Add tests
HofmeisterAn Mar 10, 2023
7259c66
Update src/Testcontainers.WebDriver/WebDriverBuilder.cs
ShaharM7 Mar 10, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Set version of selenium test to 4.8.0
  • Loading branch information
ShaharM7 committed Mar 9, 2023
commit 8b06a53c41488ea6e0ba50d24111bb9a28b8e50f
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PackageReference Include="coverlet.msbuild" Version="3.2.0"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5"/>
<PackageReference Include="xunit" Version="2.4.2"/>
<PackageReference Include="Selenium.WebDriver" Version="*"/>
<PackageReference Include="Selenium.WebDriver" Version="4.8.0"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(SolutionDir)src/Testcontainers.WebDriver/Testcontainers.WebDriver.csproj"/>
Expand Down