㈠ web driver是什麼
Web
Driver是一款FTP工具。
管理和上載網站文件的好工具,友好的界面能讓你成組的選擇文件上載,還可以將沒有完成的任務保存到以後進行。
和軟體測試沒有一點關系。
㈡ selenium webdriver,
我做這個的時候,東西人家都寫好了,我只是寫該測的頁面。我用的是maven和testng運行的,開發用的是eclipse,寫的是java代碼,這個很容易學,基本框架寫好,其餘的就是復制粘貼。
㈢ python的webdriver無法打開網址
前幾天剛遇到過這個問題,如果不能打開,99%還是版本不對,繼續找吧。
還有,不是看你的系統是不是64位,而是看Chrome是不是64位。
比如我的Chrome版本 64.0.3282.140(正式版本) (32 位)
chromedriver的版本:Starting ChromeDriver 2.35.528161 () on port 9515
還有人說:在打開Chrome後,還要加一個全屏代碼:driver.maximize_window()
以下是我的代碼,Python3.6.4上測試通過。
fromseleniumimportwebdriver
driver=webdriver.Chrome()
driver.maximize_window()
driver.get("你要打開的網址寫在這里")
㈣ webdriver支持是什麼語言
對於剛接觸selenium自動化測試的同學來說不太容易理解API是什麼,它到底和編程語言之是什麼關系。
http://www.w3.org/TR/2013/WD-webdriver-20130117/
當初,在剛學selenium (webdriver)的時候花了一個星期來翻譯這個文檔,後來也沒弄明白,它是啥。其實它就是一層基礎的協議規范。
假如說:Webdriver API(介面規范)說,我們要提供一個頁面元素id的定位方法。
Ruby的webdriver模塊是這么實現的:
require "selenium-webdriver" #導入ruby版的selenium(webdriver)
find_element(:id, "xx") #id定位方法
C#的webdriver模塊是這么實現的:
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox; //導入C#版的selenium(webdriver)
FindElement(By.Id("xx")) //id定位方法
python的webdriver模塊是這么實現的:
from selenium import webdriver #導入python版的selenium(webdriver)
find_element_by_id("xx") #id定位方法
Java的webdriver模塊是這么實現的:
import org.openqa.selenium.*;
import org.openqa.selenium.firefox.FirefoxDriver;//導入java版的selenium(webdriver)
findElement(By.id("xx")) //id定位方法
Robot Framework + selenium
因為Robot Framework 對於底層過於封裝,所以,我們看不到語言層面的方法定義。所以,Robot Framework 提供給我們的方法如下:
1、導入Robot Framework 版本的selenium(webdriver)
2、使用id方法
Click element
Id=xx
需要說明的是 webdriver API 只提供了web頁面操作的相關規范,比如元素定位方法,瀏覽器操作,獲取web頁元素屬性等。
㈤ webdriver環境
1、安裝、配置JDK1.6配置JAVA_HOME右擊我的電腦-->屬性-->高級系統設置-->高級-->環境變數 在Path中增加%JAVA_HOME%\bin; 2、Java IDE中引用selenium-java-2.40.0.jar,selenium-server-standalone-2.40.0.jar 項目目錄右鍵-->Build Path--> config build path-->Java BuildPath-->Libraries-->Add External JARs,添加selenium-java-2.40.0.jar,selenium-server-standalone-2.40.0.jar 3、拷貝chromedriver.exe到system32目錄,安裝chrome瀏覽器 4、測試環境是否搭建成功
import org.openqa.selenium.By; import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; public class test1 { public static void main(String[] args) throws InterruptedException { WebDriver dr = new ChromeDriver(); dr.get("); //打開首頁 dr.manage().window().maximize(); //最大化 Thread.sleep(3000); dr.quit(); } }
㈥ selenium webdriver 啟動chrome瀏覽器時 要帶正常的瀏覽器擴展插件等設置,python代碼報錯,代碼在補充里
原因:路徑要跟自己電腦的不一致造成的。
1、首先需要打開瀏覽器,在地址欄輸入chrome://version/,按下enter鍵,查看瀏覽器信息。
㈦ WebDriver到底怎麼用
1.2 用webdriver打開一個瀏覽器
我們常用的瀏覽器有firefox和IE兩種,firefox是selenium支持得比較成熟的瀏覽器。但是做頁面的測試,速度通常很慢,嚴重影
響持續集成的速度,這個時候建議使用HtmlUnit,不過HtmlUnitDirver運行時是看不到界面的,對調試就不方便了。使用哪種瀏覽器,可以
做成配置項,根據需要靈活配置。
打開firefox瀏覽器:
//Create a newinstance of the Firefox driver
WebDriver driver = newFirefoxDriver();
打開IE瀏覽器
//Create a newinstance of the Internet Explorer driver
WebDriver driver = newInternetExplorerDriver ();
打開HtmlUnit瀏覽器
//Createa new instance of the Internet Explorer driver
WebDriverdriver = new HtmlUnitDriver();
1.3 打開測試頁面
對頁面對測試,首先要打開被測試頁面的地址(如:http://www.google.com),web driver 提供的get方法可以打開一個頁面:
// And now use thedriver to visit Google
driver.get("http://www.google.com");
1.4 GettingStarted
package org.openqa.selenium.example;
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.ExpectedCondition;
import org.openqa.selenium.support.ui.WebDriverWait;
public class Selenium2Example {
public static voidmain(String[] args) {
// Create a newinstance of the Firefox driver
// Notice that theremainder of the code relies on the interface,
// not the implementation.
WebDriver driver = newFirefoxDriver();
// And now use this tovisit Google
driver.get("http://www.google.com");
// Alternatively thesame thing can be done like this
// driver.navigate().to("http://www.google.com");
// Find the text inputelement by its name
WebElement element =driver.findElement(By.name("q"));
// Enter something tosearch for
element.sendKeys("Cheese!");
// Now submit the form.WebDriver will find the form for us from the element
element.submit();
// Check the title ofthe page
System.out.println("Page title is: " + driver.getTitle());
// Google's search isrendered dynamically with JavaScript.
// Wait for the pageto load, timeout after 10 seconds
(newWebDriverWait(driver, 10)).until(new ExpectedCondition<Boolean>() {
public Booleanapply(WebDriver d) {
returnd.getTitle().toLowerCase().startsWith("cheese!");
}
});
// Should see:"cheese! - Google Search"
System.out.println("Page title is: " + driver.getTitle());
//Close the browser
driver.quit();
}
}
第2章 Webdirver對瀏覽器的支持
2.1 HtmlUnit Driver
優點:HtmlUnit Driver不會實際打開瀏覽器,運行速度很快。對於用FireFox等瀏覽器來做測試的自動化測試用例,運行速度通常很慢,HtmlUnit Driver無疑是可以很好地解決這個問題。
缺點:它對JavaScript的支持不夠好,當頁面上有復雜JavaScript時,經常會捕獲不到頁面元素。
使用:
WebDriver driver = new HtmlUnitDriver();
2.2 FireFox Driver
優點:FireFox Dirver對頁面的自動化測試支持得比較好,很直觀地模擬頁面的操作,對JavaScript的支持也非常完善,基本上頁面上做的所有操作FireFox Driver都可以模擬。
缺點:啟動很慢,運行也比較慢,不過,啟動之後Webdriver的操作速度雖然不快但還是可以接受的,建議不要頻繁啟停FireFox Driver。
使用:
WebDriver driver = new FirefoxDriver();
Firefox profile的屬性值是可以改變的,比如我們平時使用得非常頻繁的改變useragent的功能,可以這樣修改:
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("general.useragent.override", "some UAstring");
WebDriver driver = new FirefoxDriver(profile);
2.3 InternetExplorer Driver
優點:直觀地模擬用戶的實際操作,對JavaScript提供完善的支持。
缺點:是所有瀏覽器中運行速度最慢的,並且只能在Windows下運行,對CSS以及XPATH的支持也不夠好。
使用:
WebDriver driver = new InternetExplorerDriver();
第3章 使用操作
3.1 如何找到頁面元素
Webdriver的findElement方法可以用來找到頁面的某個元素,最常用的方法是用id和name查找。下面介紹幾種比較常用的方法。
3.1.1 By ID
假設頁面寫成這樣:
<input type="text" name="passwd"id="passwd-id" />
那麼可以這樣找到頁面的元素:
通過id查找:
WebElement element = driver.findElement(By.id("passwd-id"));
3.1.2 By Name
或通過name查找:
WebElement element = driver.findElement(By.name("passwd"));
3.1.3 By XPATH
或通過xpath查找:
WebElement element =driver.findElement(By.xpath("//input[@id='passwd-id']"));
3.1.4 By Class Name
假設頁面寫成這樣:
<div
class="cheese"><span>Cheddar</span></div><divclass="cheese"><span>Gouda</span></div>
可以通過這樣查找頁面元素:
List<WebElement>cheeses = driver.findElements(By.className("cheese"));
3.1.5 By Link Text
假設頁面元素寫成這樣:
<ahref="http://www.google.com/search?q=cheese">cheese</a>>
那麼可以通過這樣查找:
WebElement cheese =driver.findElement(By.linkText("cheese"));
3.2 如何對頁面元素進行操作
找到頁面元素後,怎樣對頁面進行操作呢?我們可以根據不同的類型的元素來進行一一說明。
3.2.1 輸入框(text field or textarea)
找到輸入框元素:
WebElement element = driver.findElement(By.id("passwd-id"));
在輸入框中輸入內容:
element.sendKeys(「test」);
將輸入框清空:
element.clear();
獲取輸入框的文本內容:
element.getText();
3.2.2 下拉選擇框(Select)
找到下拉選擇框的元素:
Select select = new Select(driver.findElement(By.id("select")));
選擇對應的選擇項:
select.selectByVisibleText(「mediaAgencyA」);
或
select.selectByValue(「MA_ID_001」);
不選擇對應的選擇項:
select.deselectAll();
select.deselectByValue(「MA_ID_001」);
select.deselectByVisibleText(「mediaAgencyA」);
或者獲取選擇項的值:
select.getAllSelectedOptions();
select.getFirstSelectedOption();
3.2.3 單選項(Radio Button)
找到單選框元素:
WebElement bookMode =driver.findElement(By.id("BookMode"));
選擇某個單選項:
bookMode.click();
清空某個單選項:
bookMode.clear();
判斷某個單選項是否已經被選擇:
bookMode.isSelected();
3.2.4 多選項(checkbox)
多選項的操作和單選的差不多:
WebElement checkbox =driver.findElement(By.id("myCheckbox."));
checkbox.click();
checkbox.clear();
checkbox.isSelected();
checkbox.isEnabled();
3.2.5 按鈕(button)
找到按鈕元素:
WebElement saveButton = driver.findElement(By.id("save"));
點擊按鈕:
saveButton.click();
判斷按鈕是否enable:
saveButton.isEnabled ();
3.2.6 左右選擇框
也就是左邊是可供選擇項,選擇後移動到右邊的框中,反之亦然。例如:
Select lang = new Select(driver.findElement(By.id("languages")));
lang.selectByVisibleText(「English」);
WebElement addLanguage =driver.findElement(By.id("addButton"));
addLanguage.click();
3.2.7 彈出對話框(Popup dialogs)
Alert alert = driver.switchTo().alert();
alert.accept();
alert.dismiss();
alert.getText();
3.2.8 表單(Form)
Form中的元素的操作和其它的元素操作一樣,對元素操作完成後對表單的提交可以:
WebElement approve = driver.findElement(By.id("approve"));
approve.click();
或
approve.submit();//只適合於表單的提交
3.2.9 上傳文件 (Upload File)
上傳文件的元素操作:
WebElement adFileUpload = driver.findElement(By.id("WAP-upload"));
String filePath = "C:\test\\uploadfile\\media_ads\\test.jpg";
adFileUpload.sendKeys(filePath);
3.2.10 Windows 和 Frames之間的切換
一般來說,登錄後建議是先:
driver.switchTo().defaultContent();
切換到某個frame:
driver.switchTo().frame("leftFrame");
從一個frame切換到另一個frame:
driver.switchTo().frame("mainFrame");
切換到某個window:
driver.switchTo().window("windowName");
3.2.11 拖拉(Drag andDrop)
WebElement element =driver.findElement(By.name("source"));
WebElement target = driver.findElement(By.name("target"));
(new Actions(driver)).dragAndDrop(element, target).perform();
3.2.12 導航 (Navigationand History)
打開一個新的頁面:
driver.navigate().to("http://www.example.com");
通過歷史導航返回原頁面:
driver.navigate().forward();
driver.navigate().back();
㈧ 為什麼輸入from selenium import webdriver就會報錯
在當前目錄有名叫selenium的文件,Python會先導入這個文件,然後再導入標准庫裡面的selenium.py。
可以使用
import selenium
print selenium.__file__
去看列印出的文件路徑,如果不是類型下面的地址C:Python27libsite-packagesselenium-2.31.0-py2.7.eggselenium\__init__.pyc,需要把當前目錄下的名叫selenium文件刪除或者重命名。
㈨ selenium和webdriver的區別
Selenium不能處理以下事件:
1) 本機鍵盤和滑鼠事件
2) 同源策略XSS/HTTP(S)
3) 彈出框,對話框(基本身份認證,自簽名的證書和文件上傳/下載)
1、WebDriver 工程在構建之後不需要其他的配置我們便可以直接使用,這一點和 Selenium 是截然不同的。因為 Selenium 還需要安裝並啟動 Selenium Server 才能運行測試程序。
2、 Selenium 提供的是基於字典的 API,用戶可以很方便的看到所以支持的方法。毋庸置疑的是,WebDriver 提供的 API 更為簡潔,對用戶更加的友好。
3、Selenium 是由一堆 JavaScript 實現的,所以只要支持 JavaScript 的瀏覽器 Selenium 都可以做到很好的支持,比 WebDriver 能支持更多的瀏覽器而且不需要做額外的開發
以上皆是selenium和webdriver的區別。
㈩ eclipse中如何運行selenium webdriver工程
eclipse運行selenium webdriver工程:
1、需要三個文件selenium-server-standalone-2.40.0.jar、selenium-java-2.40.0.jar和selenium-java-2.40.0-srcs.jar,可自行到selenium官網下載