-
Notifications
You must be signed in to change notification settings - Fork 90
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
Update tooling and protocols #19
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
0b33a4c
add recent protocols
georgiosd 79c6319
add missing members from domain objects
georgiosd 88e737d
support multiple json files
georgiosd 838450f
update protocol
georgiosd 7a9d957
fix tests
georgiosd c61610a
allow empty classes to be generated
georgiosd d29593e
split process object to allow connecting to a remote instance instead…
georgiosd f00120d
allow starting new sessions
georgiosd b90b76c
fix example
georgiosd f37da53
fix endpoint for create
georgiosd 2414749
Merge branch 'master' of https://github.com/georgiosd/ChromeDevTools
svatal 0ee8ca6
regenerated protocol
svatal 548620f
command test fixed to use new protocol file
svatal 8203b74
new protocols - Chrome 60
svatal 0e1d4a7
fixed generator not to prefix native types
svatal 4f74d04
run chrome in headless mode & wait for user dir deletion
svatal 973567a
added example that is actually doing something (taking screenshot of …
svatal fd8aa43
SendAsync returns correct result type
svatal e58cf65
trying to satisfy dotnet core compiler
svatal 81f12e8
cleanup
svatal 700d409
chrome - ability to set headless mode and path to chrome
svatal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,42 @@ | ||
using System.Diagnostics; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
using System.IO; | ||
|
||
namespace MasterDevs.ChromeDevTools | ||
{ | ||
public class ChromeProcessFactory : IChromeProcessFactory | ||
{ | ||
public IChromeProcess Create(int port) | ||
public IDirectoryCleaner DirectoryCleaner { get; set; } | ||
public string ChromePath { get; } | ||
|
||
public ChromeProcessFactory(IDirectoryCleaner directoryCleaner, string chromePath = @"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe") | ||
{ | ||
DirectoryCleaner = directoryCleaner; | ||
ChromePath = chromePath; | ||
} | ||
|
||
public IChromeProcess Create(int port, bool headless) | ||
{ | ||
string path = Path.GetRandomFileName(); | ||
var directoryInfo = Directory.CreateDirectory(Path.Combine(Path.GetTempPath(), path)); | ||
var remoteDebuggingArg = "--remote-debugging-port=" + port; | ||
var userDirectoryArg = "--user-data-dir=\"" + directoryInfo.FullName + "\""; | ||
var chromeProcessArgs = remoteDebuggingArg + " " + userDirectoryArg + " --bwsi --no-first-run"; | ||
var processStartInfo = new ProcessStartInfo(@"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe", chromeProcessArgs); | ||
var chromeProcess = Process.Start(processStartInfo); | ||
return new ChromeProcess | ||
var remoteDebuggingArg = $"--remote-debugging-port={port}"; | ||
var userDirectoryArg = $"--user-data-dir=\"{directoryInfo.FullName}\""; | ||
const string headlessArg = "--headless --disable-gpu"; | ||
var chromeProcessArgs = new List<string> | ||
{ | ||
Process = chromeProcess, | ||
UserDirectory = directoryInfo, | ||
RemoteDebuggingUri = "http://localhost:" + port | ||
remoteDebuggingArg, | ||
userDirectoryArg, | ||
"--bwsi", | ||
"--no-first-run" | ||
}; | ||
if (headless) | ||
chromeProcessArgs.Add(headlessArg); | ||
var processStartInfo = new ProcessStartInfo(ChromePath, string.Join(" ", chromeProcessArgs)); | ||
var chromeProcess = Process.Start(processStartInfo); | ||
|
||
string remoteDebuggingUrl = "http://localhost:" + port; | ||
return new LocalChromeProcess(new Uri(remoteDebuggingUrl), () => DirectoryCleaner.Delete(directoryInfo), chromeProcess); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace MasterDevs.ChromeDevTools | ||
{ | ||
public class ChromeSessionInfo | ||
{ | ||
public string Description { get; set; } | ||
|
||
public string DevtoolsFrontendUrl { get; set; } | ||
public string Id { get; set; } | ||
public string Title { get; set; } | ||
public string Type { get; set; } | ||
public string Url { get; set; } | ||
public string WebSocketDebuggerUrl { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
using System; | ||
using System.Diagnostics; | ||
using System.IO; | ||
using System.Threading.Tasks; | ||
|
||
namespace MasterDevs.ChromeDevTools | ||
{ | ||
public interface IChromeProcess : IDisposable | ||
{ | ||
Task<string[]> GetSessions(); | ||
Task<ChromeSessionInfo[]> GetSessionInfo(); | ||
|
||
DirectoryInfo UserDirectory { get; } | ||
Task<ChromeSessionInfo> StartNewSession(); | ||
|
||
Process Process { get; } | ||
|
||
string RemoteDebuggingUri { get; } | ||
Uri RemoteDebuggingUri { get; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using System.IO; | ||
|
||
namespace MasterDevs.ChromeDevTools | ||
{ | ||
public interface IDirectoryCleaner | ||
{ | ||
void Delete(DirectoryInfo dir); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System; | ||
using System.Diagnostics; | ||
|
||
namespace MasterDevs.ChromeDevTools | ||
{ | ||
public class LocalChromeProcess : RemoteChromeProcess | ||
{ | ||
public LocalChromeProcess(Uri remoteDebuggingUri, Action disposeUserDirectory, Process process) | ||
: base(remoteDebuggingUri) | ||
{ | ||
DisposeUserDirectory = disposeUserDirectory; | ||
Process = process; | ||
} | ||
|
||
public Action DisposeUserDirectory { get; set; } | ||
public Process Process { get; set; } | ||
|
||
public override void Dispose() | ||
{ | ||
base.Dispose(); | ||
|
||
Process.Kill(); | ||
Process.WaitForExit(); | ||
// Process.Close(); | ||
DisposeUserDirectory(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,5 +15,7 @@ public enum AXGlobalStates | |
Hidden, | ||
HiddenRoot, | ||
Invalid, | ||
Keyshortcuts, | ||
Roledescription, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 0 additions & 40 deletions
40
source/ChromeDevTools/Protocol/Chrome/Accessibility/AXPropertySource.cs
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this correct? There was a reason it was just returning the interface. I'm having a hard time recalling the reason though. @qmfrederik do you have thoughts on this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, now I see there is second implementation of ICommandResponse - ErrorResponse. And it can be returned from the task ..
I'd personally prefer setting task to faulty in such cases than to be forced to check and retype every command. What are your thoughts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I ran through the history via git blame but I don't think I changed this to return an interface, it looks like it just always has been like that. (I did submit a bunch of other PRs to return interfaces in other areas, but not here).
I think this change is OK, since
CommandResponse<T>
is a very simple class.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, i really like this change, i'm just afraid of "breaking" other people using this.