荷物受付 01/06 18:38 川崎大川町センター 028145 発送 01/06 18:38 川崎大川町センター 028145 作業店通過 01/06 20:14 神奈川ベース店 028990 作業店通過 01/07 04:06 西埼玉ベース店 034990 配達日・時間帯指定(保管中) 01/07 08:18 埼玉藤久保センター 034171
ALEX PCで中古Let's noteを注文。その時の記録。 月曜深夜に発注し、火曜日の18時に川崎センターに荷物が届く、夜のうちに埼玉まで移動して、8時には配送準備完了。時間指定配達のため20時までお預けだが、注文から到着まで実質二日程度か?明日楽対応店舗なので、発送作業も早いのだろう。
Selenium Webdriver http://qiita.com/yacchin1205/items/cadc2a724d433511f0a6
複式簿記
http://boki.popnavi.net/016qa/post_42.html
podcast addictでもiTunesでも使える。
factory resetで検索する。
d2105 factory reset
要件
候補
http://bazubu.com/wordpress-plugin-11415.html
Javaでruby on rails的な開発を実現
コードのチェックや画像の圧縮などを行う
import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.Wait; import org.openqa.selenium.support.ui.WebDriverWait;
public class HpTest {
public static void main(String[] args) throws InterruptedException {
WebDriver driver = new FirefoxDriver();
driver.get("https://example.com/Login");
// 30秒待つ設定
Wait<WebDriver> wait = new WebDriverWait(driver, 30);
// Login page
WebElement button = wait.until(ExpectedConditions
.elementToBeClickable(By.id("loginButton")));
driver.findElement(By.id("userId")).sendKeys("xxx");
driver.findElement(By.id("password")).sendKeys("xxx");
button.submit();
//_id25:_id65
button = wait.until(ExpectedConditions
.presenceOfElementLocated(By.id("_id25:_id65")));
button.click();
System.out.println("ボタンsumit");
Thread.sleep(100000);
driver.quit();
}
}