如何使用selenium2Library将Chrome应用程序打开到Robot中

时间:2017-11-02 20:53:18

标签: python google-chrome selenium robotframework

我试图使用selenium2Library在Robot中打开我们的Windows Chrome脚本。我尝试使用Create Webdriver创建一个使用此代码的webdriver,但它无法正常工作。

${options}=    Evaluate    sys.modules['selenium.webdriver'].ChromeOptions()       sys, selenium.webdriver.chrome.options
${options.add_extension}=        Set_Variable          path/to/extension
Create WebDriver    Chrome    chrome_options=${options}

在Python中我这样做......它在selenium中启动我的应用程序。

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.action_chains import ActionChains

def chromedr():
    chrome_options = Options()
    chrome_options.binary_location = 'C:/Program Files (x86)/InTouch Health/Carestation/Carestation.exe'
    driver = webdriver.Chrome('C:/Program Files (x86)/InTouch Health/Carestation/chromedriver.exe', chrome_options=chrome_options)  
    return driver

我怎么能在Robot / selenium2Library中做到这一点?

我能够使用以下代码启动应用程序: $ {options} =评估sys.modules [' selenium.webdriver']。ChromeOptions()sys,selenium.webdriver创建WebDriver Chrome my_alias chrome_options = $ {options} executable_path = C:/ Program Files(x86) /Myapp.exe

1 个答案:

答案 0 :(得分:-1)

使用robotframework selenium2library打开chrome

1)通过pip安装selenium2Library

2)下载并解压缩Chrome驱动程序exe,将其添加到环境变量

3)你可以像下面那样调用chrome

*** Settings ***
Library    Selenium2Library
*** Variables ***
${SiteUrl}    https://stackoverflow.com
${Browser}    Chrome
*** Test Cases ***
Test
    Open Browser and login
*** Keywords ***
Open Browser and login
    open browser    ${SiteUrl}    ${Browser}