Posts by Raimundo Pereira da Silva Jr • 1 point
2 posts
-
0
votes3
answers1982
viewsA: "for" with step "float": Typeerror: 'float' Object cannot be Interpreted as an integer
It is possible to achieve the desired result using a generator ints and split the result: for x in range(1001): x = x/10 print(x) 0.0 0.1 0.2 (...) 99.9 100.0 [Finished in 0.196s]…
-
0
votes2
answers4670
viewsA: How to use Selenium Webdriver findElement(By.xpath())?
Reinaldo, You are trying to manipulate iframe type data that cannot be directly accessed by the findelement method. See the website…