selenium Python自动化 笔记 根据xpath找定位的响应属性 修改链接并打开

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium Python自动化 笔记 根据xpath找定位的响应属性 修改链接并打开相关的知识,希望对你有一定的参考价值。

# coding=utf-8
import time
import unittest

from framework.browser_engine import BrowserEngine
from pageobjects.bird_homepage import HomePage


class BaiduSearch(unittest.TestCase):
@classmethod
def setUpClass(cls):

browse = BrowserEngine(cls)
cls.driver = browse.open_browser(cls)

@classmethod
def tearDownClass(cls):

cls.driver.quit()

def test_baidu_search(self):

homepage = HomePage(self.driver)
homepage.type_search(‘xx‘, ‘xxx‘)
# homepage.send_submit_btn()
self.driver.find_element_by_xpath("/html/body/div/div[2]/form/input[3]").click()
tempUrl = self.driver.find_element_by_link_text(
self.driver.find_element_by_xpath("/html/body/div[1]/div[2]/a[1]").text).get_attribute(‘href‘)
# print self.driver.find_element_by_xpath("/html/body/div[1]/div[2]/a[1]").text
# tempUrl=self.driver.current_url
L = tempUrl.split(‘u=‘)[0]
usernameOpen = 14852
openUrl = L + "u=" + str(usernameOpen)
self.driver.get(openUrl)
print tempUrl
time.sleep(35)



if __name__ == ‘__main__‘:
unittest.main()








































以上是关于selenium Python自动化 笔记 根据xpath找定位的响应属性 修改链接并打开的主要内容,如果未能解决你的问题,请参考以下文章

Python+Selenium笔记:使用unittest

Python+Selenium笔记:WebDriver和WebElement

Selenium笔记

selenium学习笔记——定位元素

python+selenium自动化测试-Windows环境搭建

python+selenium自动化测试-Windows环境搭建