21 | {
22 | }
23 | }
--------------------------------------------------------------------------------
/ChromeDevToolsClientGenerator/ChromeDevToolsClientGenerator.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | net6.0
6 | enable
7 |
8 |
9 |
10 |
11 | PreserveNewest
12 |
13 |
14 | PreserveNewest
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/ChromeDevToolsClientGenerator/README.md:
--------------------------------------------------------------------------------
1 | Current generated protocol r982423 on Mar 18, 2022 (Chrome 99).
2 |
3 | https://github.com/ChromeDevTools/devtools-protocol/tree/master/json
--------------------------------------------------------------------------------
/Examples/AsyncChromeDriverExample/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Examples/AsyncChromeDriverExample/App.xaml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Examples/AsyncChromeDriverExample/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using System.Windows;
2 |
3 | namespace AsyncChromeDriverExample
4 | {
5 | ///
6 | /// Interaction logic for App.xaml
7 | ///
8 | public partial class App : Application
9 | {
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Examples/AsyncChromeDriverExample/ChromeRequestListener/ResponseReceivedEventInfo.cs:
--------------------------------------------------------------------------------
1 |
2 | using Zu.ChromeDevTools.Network;
3 |
4 | namespace AsyncChromeDriverExample
5 | {
6 | internal class ResponseReceivedEventInfo
7 | {
8 | public ResponseReceivedEvent Event { get; private set; }
9 |
10 | public ResponseReceivedEventInfo(ResponseReceivedEvent ev)
11 | {
12 | Event = ev;
13 | }
14 |
15 | public override string ToString()
16 | {
17 | return Event.Response?.Url;
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Examples/AsyncChromeDriverExample/ChromeRequestListener/WebSocketFrameReceivedEventInfo.cs:
--------------------------------------------------------------------------------
1 |
2 | using Zu.ChromeDevTools.Network;
3 |
4 | namespace AsyncChromeDriverExample
5 | {
6 | internal class WebSocketFrameReceivedEventInfo
7 | {
8 | public WebSocketFrameReceivedEvent Event { get; private set; }
9 |
10 | public WebSocketFrameReceivedEventInfo(WebSocketFrameReceivedEvent ev)
11 | {
12 | Event = ev;
13 | }
14 |
15 | public override string ToString()
16 | {
17 | return Event.Response?.PayloadData;
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Examples/AsyncChromeDriverExample/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Examples/AsyncChromeDriverExample/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Examples/AsyncChromeDriverExampleCore/AsyncChromeDriverExampleCore.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | net6.0
6 | 7.1
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/HtmlForTests/ClickTest_testClicksASurroundingStrongTag.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | ClickTest_testClicksASurroundingStrongTag
5 |
6 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/HtmlForTests/CreatePage.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" CodeFile="CreatePage.aspx.cs" Inherits="CreatePage" %>
2 |
3 |
--------------------------------------------------------------------------------
/HtmlForTests/Default.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 | Testing
4 |
5 |
6 | OK. Start testing
7 |
8 |
--------------------------------------------------------------------------------
/HtmlForTests/Page.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Page.aspx.cs" Inherits="Page" %>
2 |
3 |
4 |
5 |
6 |
7 | Untitled Page
8 |
9 |
10 | top
11 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/HtmlForTests/Redirect.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Redirect.aspx.cs" Inherits="Redirect" %>
2 |
3 |
4 |
5 |
6 |
7 | Untitled Page
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/HtmlForTests/Redirect.aspx.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | public partial class Redirect : Page
4 | {
5 | protected new void Page_Load(object sender, EventArgs e)
6 | {
7 | Response.Redirect("resultPage.html");
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/HtmlForTests/actualXhtmlPage.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Title
7 |
8 |
9 |
10 |
11 | Foo
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/HtmlForTests/animals/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/animals/.gitignore
--------------------------------------------------------------------------------
/HtmlForTests/banner.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/banner.gif
--------------------------------------------------------------------------------
/HtmlForTests/beach.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/beach.jpg
--------------------------------------------------------------------------------
/HtmlForTests/blank.html:
--------------------------------------------------------------------------------
1 | blank
2 |
--------------------------------------------------------------------------------
/HtmlForTests/button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/button.png
--------------------------------------------------------------------------------
/HtmlForTests/changes.txt:
--------------------------------------------------------------------------------
1 | formPage.html
2 | frameset.html
3 | framesetPage2.html
4 | win32frameset.html
--------------------------------------------------------------------------------
/HtmlForTests/child/childPage.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Depth one child page
4 |
5 |
6 | I'm a page in a child directory
7 |
8 |
--------------------------------------------------------------------------------
/HtmlForTests/child/grandchild/grandchildPage.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Depth two child page
4 |
5 |
6 | I'm a page in a grandchild directory! How cute!
7 |
8 |
--------------------------------------------------------------------------------
/HtmlForTests/click_frames.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | click frames
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/HtmlForTests/click_out_of_bounds.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/HtmlForTests/click_rtl.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | RTL test
4 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/HtmlForTests/click_source.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Click Source
4 |
5 |
6 | I go to a target
7 |
8 |
9 |
10 |
11 |
12 | Click Source
13 |
14 |
15 | I go to a target
16 |
17 |
18 |
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/click_iframe.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | click iframe
4 |
5 | Click me
6 |
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/click_in_iframe.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | click in iframe
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/disabled_element.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Clicking on a disabled element
5 |
6 |
7 | See below
8 |
11 |
12 |
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/google_map.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Google Image Map
5 |
6 |
7 | Google Image Map
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/google_map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/click_tests/google_map.png
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/issue5237.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Sample page for issue 5237
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/issue5237_frame.html:
--------------------------------------------------------------------------------
1 | Continue
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/issue5237_target.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Target page for issue 5237
5 |
6 |
7 | Test passed
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/link_that_wraps.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Link that continues on next line
5 |
6 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/mapped_page1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Target Page 1
5 |
6 |
7 | Target Page 1
8 |
9 |
10 |
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/mapped_page2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Target Page 2
5 |
6 |
7 | Target Page 2
8 |
9 |
10 |
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/mapped_page3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Target Page 3
5 |
6 |
7 | Target Page 3
8 |
9 |
10 |
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/span_that_wraps.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Link that continues on next line
5 |
6 |
7 |
8 |
placeholder
Span that continues on next line
9 |
10 |
11 |
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/submitted_page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Submitted Successfully!
5 |
6 |
7 | Submitted Successfully!
8 |
9 |
--------------------------------------------------------------------------------
/HtmlForTests/click_tests/wrapped_overlapping_elements.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | A wrapped element with overlapped first part
5 |
6 |
7 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/HtmlForTests/click_too_big.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/HtmlForTests/click_too_big_in_frame.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | This page has iframes
4 |
5 |
6 | This is the heading
7 |
8 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/HtmlForTests/closeable_window.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | closeable window
4 |
5 |
6 | This window can be closed by clicking on this .
7 |
8 |
--------------------------------------------------------------------------------
/HtmlForTests/cn-test.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/cn-test.html
--------------------------------------------------------------------------------
/HtmlForTests/content-editable.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Testing content editable
5 |
6 |
7 |
8 | Why hello
9 |
10 |
--------------------------------------------------------------------------------
/HtmlForTests/coordinates_tests/element_in_frame.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Welcome Page
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/HtmlForTests/coordinates_tests/element_in_nested_frame.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Welcome Page
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/HtmlForTests/coordinates_tests/page_with_element_out_of_view.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Page With Element Out Of View
5 |
6 |
7 | Placeholder
8 | Red box
9 | Tex after box
10 |
11 |
12 |
--------------------------------------------------------------------------------
/HtmlForTests/coordinates_tests/page_with_empty_element.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Page With Empty Element
5 |
6 |
7 |
8 | Tex after box
9 |
10 |
11 |
--------------------------------------------------------------------------------
/HtmlForTests/coordinates_tests/page_with_fixed_element.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Page With Fixed Element
5 |
6 |
7 | fixed red box
8 | Placeholder
9 | Element at the bottom
10 | Tex after box
11 |
12 |
13 |
--------------------------------------------------------------------------------
/HtmlForTests/coordinates_tests/page_with_hidden_element.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Page With Hidden Element
5 |
6 |
7 | Hidden box
8 | Tex after box
9 |
10 |
11 |
--------------------------------------------------------------------------------
/HtmlForTests/coordinates_tests/page_with_invisible_element.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Page With Invisible Element
5 |
6 |
7 | Invisible box
8 | Tex after box
9 |
10 |
11 |
--------------------------------------------------------------------------------
/HtmlForTests/coordinates_tests/page_with_transparent_element.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Page With Transparent Element
5 |
6 |
7 | Hidden box
8 | Tex after box
9 |
10 |
11 |
--------------------------------------------------------------------------------
/HtmlForTests/coordinates_tests/simple_page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Simple Page
5 |
6 |
7 | Red box
8 | Tex after box
9 |
10 |
11 |
--------------------------------------------------------------------------------
/HtmlForTests/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
--------------------------------------------------------------------------------
/HtmlForTests/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
--------------------------------------------------------------------------------
/HtmlForTests/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
--------------------------------------------------------------------------------
/HtmlForTests/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
--------------------------------------------------------------------------------
/HtmlForTests/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
--------------------------------------------------------------------------------
/HtmlForTests/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/HtmlForTests/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
--------------------------------------------------------------------------------
/HtmlForTests/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
--------------------------------------------------------------------------------
/HtmlForTests/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
--------------------------------------------------------------------------------
/HtmlForTests/css/ui-lightness/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/css/ui-lightness/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/HtmlForTests/css/ui-lightness/images/ui-icons_228ef1_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/css/ui-lightness/images/ui-icons_228ef1_256x240.png
--------------------------------------------------------------------------------
/HtmlForTests/css/ui-lightness/images/ui-icons_ef8c08_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
--------------------------------------------------------------------------------
/HtmlForTests/css/ui-lightness/images/ui-icons_ffd27a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
--------------------------------------------------------------------------------
/HtmlForTests/css/ui-lightness/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ToCSharp/AsyncChromeDriver/b62f63fc6d037b408bddcba7ba4c3455b8c4899a/HtmlForTests/css/ui-lightness/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/HtmlForTests/cssTransform2.html:
--------------------------------------------------------------------------------
1 |
2 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | I am not a hidden element
21 |
--------------------------------------------------------------------------------
/HtmlForTests/document_write_in_onload.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Document Write In Onload
4 |
9 |
10 |
11 | hello world
12 |
13 |
14 |
--------------------------------------------------------------------------------
/HtmlForTests/errors.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/HtmlForTests/fixedFooterNoScroll.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Fixed footer with no scrollbar
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/HtmlForTests/fixedFooterNoScrollQuirksMode.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Fixed footer with no scrollbar
4 |
5 |
6 |
11 |
12 |
--------------------------------------------------------------------------------
/HtmlForTests/framePage3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | inner
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/HtmlForTests/frameScrollChild.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Child frame
5 |
6 |
7 | This is a scrolling frame test
8 |
9 |
10 |
11 | First row
12 |
13 |
14 | Second row
15 |
16 |
17 | Third row
18 |
19 |
20 | Fourth row
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/HtmlForTests/frameScrollPage.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Welcome Page
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/HtmlForTests/frameScrollParent.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Welcome Page
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/HtmlForTests/frameWithAnimals.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | This page has iframes
4 |
5 |
6 | This is the heading
7 |
8 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/HtmlForTests/frame_switching_tests/bug4876.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Test issue 4876
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/HtmlForTests/frame_switching_tests/bug4876_iframe.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/HtmlForTests/slowLoadingAlert.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | slowLoadingAlert
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/HtmlForTests/slowLoadingResourcePage.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | This page loads something slowly
4 |
5 |
6 | Simulate the situation where a web-bug or analytics script takes waaay
7 | too long to respond. Normally these things are loaded in an iframe, which is
8 | what we're doing here.
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/HtmlForTests/slow_loading_iframes.html:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 | Page with slow loading iFrames
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/HtmlForTests/styledPage.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Styled Page
5 |
10 |
11 |
12 |
13 |
14 |
15 |
19 |
20 |
21 |
22 | Content
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/HtmlForTests/svgTest.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/HtmlForTests/tinymce.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | TinyMCE
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/HtmlForTests/transformable.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | ]>
4 |
5 |
6 | Click the button.
7 |
8 | Go to another page
9 |
10 |
11 |
--------------------------------------------------------------------------------
/HtmlForTests/underscore.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/HtmlForTests/unicode_ltr.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Some notes
7 |
8 |
9 |
--------------------------------------------------------------------------------
/HtmlForTests/userDefinedProperty.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/HtmlForTests/visibility-css.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Visibility test via CSS
6 |
16 |
20 |
21 |
--------------------------------------------------------------------------------
/HtmlForTests/win32frameset.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/HtmlForTests/window_switching_tests/page_with_frame.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Test page for WindowSwitchingTest.testShouldFocusOnTheTopMostFrameAfterSwitchingToAWindow
5 |
6 |
7 | Open new window
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/HtmlForTests/window_switching_tests/simple_page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Simple Page
5 |
6 |
7 | Simple page with simple test.
8 |
9 |
10 |
--------------------------------------------------------------------------------
/HtmlForTests/xhtmlFormPage.xhtml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 | XHTML
6 |
7 |
8 |
9 |
13 |
14 |
Here is some content that should not be in the previous p tag
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/NOTICE.txt:
--------------------------------------------------------------------------------
1 | AsyncChromeDriver in it base was rewritten from chromedriver hosted on
2 | https://cs.chromium.org/chromium/src/chrome/test/chromedriver/README.txt.
3 |
4 |
5 | For third-party license information see the THIRD-PARTY-NOTICES file which accompanies this NOTICE file.
--------------------------------------------------------------------------------
/WebSocket/ChromeWebSocketProxy/ChromeWebSocketProxy.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netstandard2.0;net462
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/WebSocket/ChromeWebSocketProxy/ILogger.cs:
--------------------------------------------------------------------------------
1 | namespace Zu.ChromeWebSocketProxy
2 | {
3 | public class ILogger
4 | {
5 | public virtual void LogTrace(string message, object[] args)
6 | {
7 |
8 | }
9 |
10 | public virtual void LogError(string message, object[] args)
11 | {
12 |
13 | }
14 | }
15 | }
--------------------------------------------------------------------------------
/WebSocket/websocket-sharp/websocket-sharp.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netstandard2.0;net462
5 | websocket_sharp
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | theme: jekyll-theme-tactile
--------------------------------------------------------------------------------