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
[void][Reflection.Assembly]::LoadFile("C:\edgedriver_win32\Selenium.WebDriver.4.0.0-alpha05\lib\net47\WebDriver.dll") #DLL読み込み | |
$msedge = "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" #Edge本体のパス | |
$msedgedriverDir = "C:\edgedriver_win32" #Edge Driverがあるフォルダのパス | |
$msedgedriverExe = "msedgedriver.exe" #Edge Driver名 | |
$edgeOptions = New-Object OpenQA.Selenium.Edge.EdgeOptions | |
$edgeOptions.UseChromium = $true | |
$edgeOptions.BinaryLocation = $msedge | |
$service = [OpenQA.Selenium.Edge.EdgeDriverService]::CreateChromiumService($msedgedriverDir, $msedgedriverExe) | |
$service.EnableVerboseLogging = $false |
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
getElementsByXPath = function(expression, parentElement) { | |
var r = [] | |
var x = document.evaluate(expression, parentElement || document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null) | |
for (var i = 0, l = x.snapshotLength; i < l; i++) { | |
r.push(x.snapshotItem(i)) | |
} | |
return r | |
} | |
//ここにユーザーネームを追加する |
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
##flow | |
1.get crystal.construct oblisk to front line | |
2.next few minutes,battle enemy,go to other crystal | |
3.in some cases, summon warth or knight etc. construct obelisk | |
please see "how to construct obelisk" or "battle enemy" | |
please left crystal to a friend.because enemy left three crystal when you is die. | |
##how to construct obelisk | |
construct oblisk to front line. | |
###how to draw front line |
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
var FezWarData = (function(){ | |
function FezWarData(){ | |
} | |
FezWarData.prototype.result = ""; | |
FezWarData.prototype.fetchRecords = function(record_list_url){ | |
console.log(record_list_url); | |
var d = new $.Deferred(); |