Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
user278618
Posts : 1
Join date : 2011-02-08

Problem with brackets[?] in css selector in Selenium-python Empty Problem with brackets[?] in css selector in Selenium-python

Tue Feb 08, 2011 4:14 pm
Hi,

Below is my script which check is element present. When I give this selector:

Code:
  css=input[name='flightSearchParam[3].originAirport']

in Selenium Ide it find me this element, but when I run this in selenium rc it can't find it. I think that it is a problem with brackets.

What I must to change to find this element by selenium rc?

I run it at Windows XP and Polish Culture

Script is ready to run.

Code:
    # -*- coding: utf-8 -*-
    from selenium import selenium
    import unittest, time, re
   
    class Untitled(unittest.TestCase):
        def setUp(self):
            self.verificationErrors = []
            self.selenium = selenium("localhost", 5555, "*chrome", "http://www.aa.com/")
            self.selenium.start()

   
    def test_untitled(self):
        sel = self.selenium
        sel.open("/international/internationalSplashAccess.do?countryCodeForIP=PL")
        sel.click("localeSubmit")
        sel.wait_for_page_to_load("30000")
        for i in range(60):
            try:
                if sel.is_element_present("aa-hp-multi-city-link2"): break
            except: pass
            time.sleep(1)
        else: self.fail("time out")
        sel.click("aa-hp-multi-city-link2")
        sel.click("flightSearchForm.button.reSubmit")
        sel.wait_for_page_to_load("30000")
             
        for i in range(60):
            try:
                if sel.is_element_present(u"css=input[name='flightSearchParam[3].originAirport']"): break
            except: pass
            time.sleep(1)
        else: self.fail("time out")
   
    def tearDown(self):
        self.selenium.stop()
        self.assertEqual([], self.verificationErrors)

    if __name__ == "__main__":
        unittest.main()
Back to top
Permissions in this forum:
You cannot reply to topics in this forum