Skip to content

Commit

Permalink
Remove some peronal info
Browse files Browse the repository at this point in the history
Signed-off-by: xcgspring <[email protected]>
  • Loading branch information
xcgspring committed Apr 20, 2015
1 parent a31a45e commit 71aa176
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Image that an app contains a lot of UI Elements, and the search identifiers spli

import selenium.webdriver as webdriver

browser = webdriver.Chrome(executable_path = r"C:\Users\cxuanx\Downloads\chromedriver.exe")
browser = webdriver.Chrome(executable_path = r"chromedriver.exe")
browser.get(r"http://www.bing.com")

searchEdit = browser.find_element_by_id("sb_form_q")
Expand Down Expand Up @@ -83,7 +83,7 @@ Image that an app contains a lot of UI Elements, and the search identifiers spli
AXUI.Config(config_file)
appmap = AXUI.AppMap(app_map)

appmap.browser.start(browser_name="CHROME", executable_path = r"C:\Users\cxuanx\Downloads\chromedriver.exe")
appmap.browser.start(browser_name="CHROME", executable_path = r"chromedriver.exe")

appmap.browser.searchEdit.Keyboard.input("AXUI")
appmap.browser.goButton.Mouse.left_click()
Expand Down
2 changes: 1 addition & 1 deletion example/selenium/bing.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
AXUI.Config(config_file)
appmap = AXUI.AppMap(app_map)

appmap.browser.start(browser_name="CHROME", executable_path = r"C:\Users\cxuanx\Downloads\chromedriver.exe")
appmap.browser.start(browser_name="CHROME", executable_path = r"chromedriver.exe")

appmap.browser.searchEdit.Keyboard.input("AXUI")
appmap.browser.goButton.Mouse.left_click()
2 changes: 1 addition & 1 deletion example/selenium/original.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

import selenium.webdriver as webdriver

browser = webdriver.Chrome(executable_path = r"C:\Users\cxuanx\Downloads\chromedriver.exe")
browser = webdriver.Chrome(executable_path = r"chromedriver.exe")
browser.get(r"http://www.bing.com")

searchEdit = browser.find_element_by_id("sb_form_q")
Expand Down
2 changes: 1 addition & 1 deletion example/selenium/selenium.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ color_enable = True
[XML]
#location where you store your app maps, should be an absolute path
#set this location wrong could cause your app map loading fail
app_map_location = C:\Users\cxuanx\Documents\GitHub\AXUI\example\selenium\app_map
app_map_location = app_map_path

#location where you store your schema, should be an absolute path
#usually you do not need to change the default schema
Expand Down
2 changes: 1 addition & 1 deletion example/windows/windows.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ color_enable = True
[XML]
#location where you store your app maps, should be an absolute path
#set this location wrong could cause your app map loading fail
app_map_location = C:\Users\cxuanx\Documents\GitHub\AXUI\example\windows\app_map
app_map_location = app_map_path

#location where you store your schema, should be an absolute path
#usually you do not need to change the default schema
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
name = "AXUI",
packages = find_packages(),
package_data = {"AXUI":["global.cfg"], "AXUI.XML":["schemas/AXUI_app_map.xsd"], "AXUI.driver.windows":["screenshot/screenshot.exe"]},
version = "0.2.1",
version = "0.2.2",
description = "A cross platform UI auto framework",
author = "xcgspring",
author_email = "[email protected]",
Expand Down

0 comments on commit 71aa176

Please sign in to comment.