前提・実現したいこと
androidstudioでseleniumを動かしたい。
発生している問題・エラーメッセージ
androidstudioでRunを押すとエミュレータが起動するが、すぐに落ちてしまう。
追加したコード(build.gradle)
dependencies { compile 'org.seleniumhq.selenium:selenium-java:3.141.59' } defaultConfig { multiDexEnabled true } packagingOptions { exclude 'META-INF/versions/9' }
追加したコード(build.gradle)
Java
1package com.example.cnn; 2 3import android.os.Bundle; 4import android.widget.TextView; 5 6import androidx.appcompat.app.AppCompatActivity; 7 8import org.openqa.selenium.By; 9import org.openqa.selenium.WebDriver; 10import org.openqa.selenium.WebElement; 11import org.openqa.selenium.chrome.ChromeDriver; 12import org.openqa.selenium.chrome.ChromeOptions; 13 14import java.util.ArrayList; 15import java.util.List; 16 17public class MainActivity extends AppCompatActivity { 18 19 @Override 20 protected void onCreate(Bundle savedInstanceState) { 21 super.onCreate(savedInstanceState); 22 setContentView(R.layout.activity_main); 23 TextView textView = findViewById(R.id.text_view); 24 final String PATH = "C:\Users\Myname\Desktop\chromedriver_android\chromedriver.exe"; 25 System.setProperty("webdriver.chrome.driver", PATH); 26 ChromeOptions options = new ChromeOptions(); 27 WebDriver driver = new ChromeDriver(options); 28 29 final String URL = "https:/***"; 30 driver.get(URL); 31 List<WebElement> elements = driver.findElements(By.className("cd__headline")); 32 List<String> list = new ArrayList<>(); 33 for (WebElement element : elements) { 34 WebElement aTag = element.findElement(By.tagName("a")); 35 if(aTag.getAttribute("href").contains("index.html")) { 36 list.add(aTag.getAttribute("href")); 37 } 38 } 39 driver.get(list.get(6)); 40 List<WebElement> elements2 = driver.findElements(By.className("zn-body__paragraph")); 41 for (WebElement element : elements2) { 42 textView.setText(element.getText()); 43 } 44 45 }
}
その他
chromedriverをwindows版のものを使用しているのがうまくいかない原因かなと思っています。(検索しましたが、chromedriverのandroid版のものは見つけることができませんでした)
そもそもandroidでseleniumを動かすというのが無理なのでしょうか?
追加したコードで、exclude 'META-INF/versions/9' というのはこれを書かないとエラーが起きてエミュレータが起動しなかったので書きました。
eclipseでは同じコードでちゃんと動いたのでJavaの文法的なエラーということは恐らくないかと思われます。
androidstudioでselenium動かした経験があるかたいらっしゃいましたら知恵を貸してほしいですm(__)m
あなたの回答
tips
プレビュー